2016-12-30 00:05:44 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ipfs/merkledag/node.h"
|
2017-02-27 17:27:40 +00:00
|
|
|
#include "ipfs/core/ipfs_node.h"
|
2016-12-30 00:05:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Interogate the path and the current node, looking
|
|
|
|
* for the desired node.
|
|
|
|
* @param path the current path
|
|
|
|
* @param from the current node (or NULL if it is the first call)
|
|
|
|
* @returns what we are looking for, or NULL if it wasn't found
|
|
|
|
*/
|
2017-02-27 17:27:40 +00:00
|
|
|
struct Node* ipfs_resolver_get(const char* path, struct Node* from, const struct IpfsNode* ipfs_node);
|