Index: /trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkReply.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkReply.cpp	(revision 43708)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkReply.cpp	(revision 43709)
@@ -21,4 +21,6 @@
 #include "UINetworkReply.h"
 #include "UINetworkManager.h"
+#include "VBoxGlobal.h"
+#include "VBoxUtils.h"
 
 /* Other VBox includes; */
@@ -58,4 +60,13 @@
         RTHTTP hHttp;
         m_iError = RTHttpCreate(&hHttp);
+
+        /* Setup proxy: */
+        UIProxyManager proxyManager(vboxGlobal().settings().proxySettings());
+        if (proxyManager.proxyEnabled())
+        {
+            RTHttpSetProxy(hHttp,
+                           proxyManager.proxyHost().toAscii().constData(),
+                           proxyManager.proxyPort().toUInt(), 0, 0);
+        }
 
         /* Acquire: */
