Remove getNetworkInterfaces and getBestPublicIp function.

They are not used at all and the windows version need some extra libs
that complexify the code.

Remove them for now. If it happens that they are needed, we will readd
them.
This commit is contained in:
Matthieu Gautier
2019-04-04 16:49:07 +02:00
parent 938e2a81c1
commit f8522fb26e
2 changed files with 1 additions and 153 deletions

View File

@ -20,13 +20,10 @@
#ifndef KIWIX_NETWORKTOOLS_H
#define KIWIX_NETWORKTOOLS_H
#include <map>
#include <string>
namespace kiwix
{
std::map<std::string, std::string> getNetworkInterfaces();
std::string getBestPublicIp();
std::string download(const std::string& url);
}