Added 10.0.0.0 private network scheme

This commit is contained in:
renaud gaudin 2014-05-31 13:53:46 +00:00
parent a37fd98585
commit 1b192c2557
1 changed files with 14 additions and 7 deletions

View File

@ -38,7 +38,7 @@ std::map<std::string, std::string> kiwix::getNetworkInterfaces() {
std::endl; std::endl;
return interfaces; return interfaces;
} }
int nNumInterfaces = nBytesReturned / sizeof(INTERFACE_INFO); int nNumInterfaces = nBytesReturned / sizeof(INTERFACE_INFO);
for (int i = 0; i < nNumInterfaces; ++i) { for (int i = 0; i < nNumInterfaces; ++i) {
sockaddr_in *pAddress; sockaddr_in *pAddress;
@ -47,7 +47,7 @@ std::map<std::string, std::string> kiwix::getNetworkInterfaces() {
/* Add to the map */ /* Add to the map */
std::string interfaceName = std::string(inet_ntoa(pAddress->sin_addr)); std::string interfaceName = std::string(inet_ntoa(pAddress->sin_addr));
std::string interfaceIp = std::string(inet_ntoa(pAddress->sin_addr)); std::string interfaceIp = std::string(inet_ntoa(pAddress->sin_addr));
interfaces.insert(std::pair<std::string, std::string>(interfaceName, interfaceIp)); interfaces.insert(std::pair<std::string, std::string>(interfaceName, interfaceIp));
} }
#else #else
/* Get Network interfaces information */ /* Get Network interfaces information */
@ -76,9 +76,9 @@ std::map<std::string, std::string> kiwix::getNetworkInterfaces() {
std::string interfaceIp = std::string(host); std::string interfaceIp = std::string(host);
/* Add to the map */ /* Add to the map */
interfaces.insert(std::pair<std::string, std::string>(interfaceName, interfaceIp)); interfaces.insert(std::pair<std::string, std::string>(interfaceName, interfaceIp));
/* some systems have ifr_addr.sa_len and adjust the length that /* some systems have ifr_addr.sa_len and adjust the length that
* way, but not mine. weird */ * way, but not mine. weird */
#ifndef linux #ifndef linux
len=IFNAMSIZ + ifreq->ifr_addr.sa_len; len=IFNAMSIZ + ifreq->ifr_addr.sa_len;
@ -107,17 +107,24 @@ std::string kiwix::getBestPublicIp() {
} }
#endif #endif
for(std::map<std::string, std::string>::iterator iter = interfaces.begin(); for(std::map<std::string, std::string>::iterator iter = interfaces.begin();
iter != interfaces.end(); ++iter) { iter != interfaces.end(); ++iter) {
std::string interfaceIp = iter->second; std::string interfaceIp = iter->second;
if (interfaceIp.length() >= 7 && interfaceIp.substr(0, 7) == "192.168") if (interfaceIp.length() >= 7 && interfaceIp.substr(0, 7) == "192.168")
return interfaceIp; return interfaceIp;
} }
for(std::map<std::string, std::string>::iterator iter = interfaces.begin(); for(std::map<std::string, std::string>::iterator iter = interfaces.begin();
iter != interfaces.end(); ++iter) { iter != interfaces.end(); ++iter) {
std::string interfaceIp = iter->second; std::string interfaceIp = iter->second;
if (interfaceIp.length() >= 3 && interfaceIp.substr(0, 3) == "172") if (interfaceIp.length() >= 7 && interfaceIp.substr(0, 7) == "172.16.")
return interfaceIp;
}
for(std::map<std::string, std::string>::iterator iter = interfaces.begin();
iter != interfaces.end(); ++iter) {
std::string interfaceIp = iter->second;
if (interfaceIp.length() >= 3 && interfaceIp.substr(0, 3) == "10.")
return interfaceIp; return interfaceIp;
} }