nesca/Utils.cpp

18 lines
264 B
C++
Raw Normal View History

2015-03-05 14:29:05 +00:00
#include <Utils.h>
2015-03-06 14:32:36 +00:00
char *getSystemProxy() {
2015-03-07 17:31:48 +00:00
return "";
2015-03-06 14:32:36 +00:00
}
int Utils::getProxyPort() {
2015-03-07 17:31:48 +00:00
return 0;
2015-03-06 14:32:36 +00:00
}
char * Utils::getProxy() {
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
#else
getSystemProxy();
#endif
2015-03-07 17:31:48 +00:00
return "";
2015-03-05 14:29:05 +00:00
}