- Timestamp:
- Jan 11, 2022 9:50:56 PM (3 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/UnattendedImpl.h
r93115 r93189 122 122 Utf8Str mStrPostInstallCommand; 123 123 Utf8Str mStrExtraInstallKernelParameters; 124 Utf8Str mStrProxy; 124 125 125 126 bool mfDoneDetectIsoOS; /**< Set by detectIsoOS(), cleared by setIsoPath(). */ … … 129 130 RTCList<RTCString, RTCString *> mDetectedOSLanguages; /**< (only relevant for windows at the moment) */ 130 131 Utf8Str mStrDetectedOSHints; 131 Utf8Str mStrProxy;132 132 /** @} */ 133 133 -
trunk/src/VBox/Main/src-server/UnattendedImpl.cpp
r93157 r93189 38 38 #include <iprt/locale.h> 39 39 #include <iprt/path.h> 40 #include <iprt/vfs.h> 40 41 41 42 using namespace std; … … 2582 2583 { 2583 2584 /* set default proxy */ 2585 /** @todo BUGBUG! implement this */ 2584 2586 } 2585 2587 else if (aProxy.equalsIgnoreCase("none")) 2586 2588 { 2587 2589 /* clear proxy config */ 2588 mStrProxy = "";2590 mStrProxy.setNull(); 2589 2591 } 2590 2592 else 2591 2593 { 2592 2594 /** @todo Parse and set proxy config into a schema map or something along those lines. */ 2595 /** @todo BUGBUG! implement this */ 2593 2596 // return E_NOTIMPL; 2594 2597 mStrProxy = aProxy; … … 3048 3051 } 3049 3052 3050 Utf8Str const & 3053 Utf8Str const &Unattended::i_getDetectedOSVersion() 3051 3054 { 3052 3055 Assert(isReadLockedOnCurrentThread());
Note:
See TracChangeset
for help on using the changeset viewer.