Changeset 43709 in vbox for trunk/src/VBox
- Timestamp:
- Oct 23, 2012 12:24:21 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 81583
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkReply.cpp
r43707 r43709 21 21 #include "UINetworkReply.h" 22 22 #include "UINetworkManager.h" 23 #include "VBoxGlobal.h" 24 #include "VBoxUtils.h" 23 25 24 26 /* Other VBox includes; */ … … 58 60 RTHTTP hHttp; 59 61 m_iError = RTHttpCreate(&hHttp); 62 63 /* Setup proxy: */ 64 UIProxyManager proxyManager(vboxGlobal().settings().proxySettings()); 65 if (proxyManager.proxyEnabled()) 66 { 67 RTHttpSetProxy(hHttp, 68 proxyManager.proxyHost().toAscii().constData(), 69 proxyManager.proxyPort().toUInt(), 0, 0); 70 } 60 71 61 72 /* Acquire: */
Note:
See TracChangeset
for help on using the changeset viewer.