Uncomment import/export functions.

This commit is contained in:
Nicolás Ortega Froysa
2017-10-30 16:45:22 +01:00
parent 433860b3cd
commit 78a7daf984
2 changed files with 8 additions and 8 deletions

View File

@ -85,7 +85,7 @@ void NeoComm_deinit();
*/
int NeoComm_connect(const char *address, const unsigned short port);
/*
/**
* @brief Import a list of nodes from a node file and connect to them.
*
* @param node_file Path to the node list file.
@ -93,9 +93,9 @@ int NeoComm_connect(const char *address, const unsigned short port);
* @return 1 upon success, 0 upon failure. Use NeoComm_get_last_error for a
* text description of the error.
*/
//int NeoComm_import_nodes(const char *node_file);
int NeoComm_import_nodes(const char *node_file);
/*
/**
* @brief Export current list of nodes into a file.
*
* @param node_file path to node list file.
@ -103,7 +103,7 @@ int NeoComm_connect(const char *address, const unsigned short port);
* @return 1 upon success, 0 upon failure. Use NeoComm_get_last_error for a
* text description of the error.
*/
//int NeoComm_export_nodes(const char *node_file);
int NeoComm_export_nodes(const char *node_file);
/**
* @brief Join a channel.