c-ipfs/include/ipfs/core/ipfs_node.h

19 lines
413 B
C
Raw Normal View History

#pragma once
#include "ipfs/repo/config/identity.h"
#include "ipfs/repo/fsrepo/fs_repo.h"
#include "libp2p/peer/peerstore.h"
enum NodeMode { MODE_OFFLINE, MODE_ONLINE };
2016-10-27 18:11:34 +00:00
struct IpfsNode {
enum NodeMode mode;
struct Identity* identity;
struct FSRepo* repo;
struct Peerstore* peerstore;
2017-03-09 23:03:21 +00:00
struct Routing* routing;
2016-10-27 18:11:34 +00:00
//struct Pinner pinning; // an interface
//struct Mount** mounts;
// TODO: Add more here
};