c-ipfs/include/ipfs/merkledag/merkledag.h

28 lines
703 B
C
Raw Normal View History

2016-12-12 11:27:06 +00:00
/***
* Merkledag methods
*/
2016-12-05 15:50:17 +00:00
#ifndef __IPFS_MERKLEDAG_H__
#define __IPFS_MERKLEDAG_H__
2016-12-19 14:03:28 +00:00
#include "ipfs/merkledag/node.h"
2016-12-05 15:50:17 +00:00
#include "ipfs/repo/fsrepo/fs_repo.h"
/***
* Adds a node to the dagService and blockService
* @param node the node to add
* @param cid the resultant cid that was added
* @returns true(1) on success
*/
int ipfs_merkledag_add(struct Node* node, struct FSRepo* fs_repo);
/***
* Retrieves a node from the datastore based on the cid
* @param cid the key to look for
* @param node the node to be created
* @param fs_repo the repository
* @returns true(1) on success
*/
int ipfs_merkledag_get(const struct Cid* cid, struct Node** node, const struct FSRepo* fs_repo);
2016-12-05 15:50:17 +00:00
#endif