- Timestamp:
- Jul 17, 2006, 10:25:00 AM (18 years ago)
- Location:
- branches/proxy/src/lib/network
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/network/monitor/network_monitor.cc
r9300 r9301 53 53 54 54 // assuming that the config files are already read we get the proxy servers 55 std::vector<IPaddress*>* proxyList = &ProxySettings::getInstance()->getProxyList();55 std::vector<IPaddress*>* proxyList = ProxySettings::getInstance()->getProxyList(); 56 56 std::vector<IPaddress*>::iterator it = proxyList->begin(); 57 57 // create a peer info class and a network node class for each new proxy and add them to the passive list -
branches/proxy/src/lib/network/proxy/proxy_settings.h
r9300 r9301 34 34 35 35 /** @returns the list of proxy servers from the init file */ 36 inline std::vector<IPaddress*> getProxyList() { returnthis->proxies; }36 inline std::vector<IPaddress*>* getProxyList() { return &this->proxies; } 37 37 38 38
Note: See TracChangeset
for help on using the changeset viewer.