forked from agorise/c-ipfs
62096ffc1c
Also included is a way to pass port and swarm info to methods that build the config file. This makes testing easier. Multiple peers can be started on the same machine easily.
32 lines
1 KiB
C
32 lines
1 KiB
C
#pragma once
|
|
|
|
#include "libp2p/utils/vector.h"
|
|
|
|
/**
|
|
* Make an IPFS directory at the passed in path
|
|
* @param path the path
|
|
* @param swarm_port the port that the swarm will run on
|
|
* @param bootstrap_peers a Vector of MultiAddress of fellow peers
|
|
* @param peer_id the peer id generated
|
|
* @returns true(1) on success, false(0) on failure
|
|
*/
|
|
int make_ipfs_repository(const char* path, int swarm_port, struct Libp2pVector* bootstrap_peers, char **peer_id);
|
|
|
|
/**
|
|
* Initialize a repository, called from the command line
|
|
* @param argc number of arguments
|
|
* @param argv arguments
|
|
* @returns true(1) on success
|
|
*/
|
|
int ipfs_repo_init(int argc, char** argv);
|
|
|
|
/**
|
|
* Get the correct repo directory. Looks in all the appropriate places
|
|
* for the ipfs directory.
|
|
* @param argc number of command line arguments
|
|
* @param argv command line arguments
|
|
* @param repo_dir the results. This will point to the [IPFS_PATH]/.ipfs directory
|
|
* @returns true(1) if the directory is there, false(0) if it is not.
|
|
*/
|
|
int ipfs_repo_get_directory(int argc, char** argv, char** repo_dir);
|
|
|