Move total into stats.

This commit is contained in:
Nicolás Ortega Froysa
2017-11-10 16:34:36 +01:00
parent 64fbe3ec9c
commit f08812fba4
3 changed files with 6 additions and 18 deletions

View File

@ -56,7 +56,8 @@ struct stats {
unsigned int good,
dubious,
cached,
incoming;
incoming,
total;
};
/**
@ -122,13 +123,6 @@ int NeoComm_export_nodes(const char *node_file);
*/
struct stats NeoComm_get_node_stats();
/**
* @brief Get the number of nodes connected.
*
* @return A number of the known nodes.
*/
unsigned int NeoComm_count_connected_nodes();
/**
* @brief Join a channel.
*