21 lines
409 B
C
21 lines
409 B
C
//
|
|
// ipfs_node.h
|
|
// c-ipfs
|
|
//
|
|
// Created by John Jones on 10/27/16.
|
|
// Copyright © 2016 JMJAtlanta. All rights reserved.
|
|
//
|
|
|
|
#ifndef __CORE_IPFS_NODE_H__
|
|
#define __CORE_IPFS_NODE_H__
|
|
|
|
struct IpfsNode {
|
|
//struct PeerId identity;
|
|
//struct Repo repo;
|
|
//struct Pinner pinning; // an interface
|
|
//struct Mount** mounts;
|
|
//struct PrivKey* private_key;
|
|
// TODO: Add more here
|
|
};
|
|
|
|
#endif /* ipfs_node_h */
|