Changeset 85359 in vbox
- Timestamp:
- Jul 15, 2020 7:08:02 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r85337 r85359 1276 1276 VBOX_WITH_AUDIO_RECORDING= 1277 1277 endif 1278 # Disable cloud network support1279 VBOX_WITH_CLOUD_NET=1280 1278 # Disable building and packing vboximg-mount. 1281 1279 VBOX_WITH_VBOXIMGMOUNT= -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageCloud.cpp
r85144 r85359 2112 2112 #ifndef VBOX_WITH_PROXY_INFO 2113 2113 RT_NOREF(strUrl, strProxy); 2114 LogRel((" OCI-NET: Proxy support is disabled. Using direct connection.\n"));2114 LogRel(("CLOUD-NET: Proxy support is disabled. Using direct connection.\n")); 2115 2115 return false; 2116 2116 #else /* VBOX_WITH_PROXY_INFO */ … … 2119 2119 if (RT_FAILURE(rc)) 2120 2120 { 2121 LogRel((" OCI-NET: Failed to create HTTP context (rc=%d)\n", rc));2121 LogRel(("CLOUD-NET: Failed to create HTTP context (rc=%d)\n", rc)); 2122 2122 return false; 2123 2123 } … … 2125 2125 if (RT_FAILURE(rc)) 2126 2126 { 2127 LogRel((" OCI-NET: Failed to use system proxy (rc=%d)\n", rc));2127 LogRel(("CLOUD-NET: Failed to use system proxy (rc=%d)\n", rc)); 2128 2128 RTHttpDestroy(hHttp); 2129 2129 return false; … … 2135 2135 if (RT_FAILURE(rc)) 2136 2136 { 2137 LogRel((" OCI-NET: Failed to get proxy for %s (rc=%d)\n", strUrl.c_str(), rc));2137 LogRel(("CLOUD-NET: Failed to get proxy for %s (rc=%d)\n", strUrl.c_str(), rc)); 2138 2138 RTHttpDestroy(hHttp); 2139 2139 return false; … … 2155 2155 break; 2156 2156 case RTHTTPPROXYTYPE_UNKNOWN: 2157 LogRel((" OCI-NET: Unknown proxy type. Using direct connecton."));2157 LogRel(("CLOUD-NET: Unknown proxy type. Using direct connecton.")); 2158 2158 RTHttpDestroy(hHttp); 2159 2159 return false;
Note:
See TracChangeset
for help on using the changeset viewer.