Changeset 49560 in vbox for trunk/src/VBox/NetworkServices
- Timestamp:
- Nov 20, 2013 3:05:10 AM (11 years ago)
- Location:
- trunk/src/VBox/NetworkServices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/NAT/VBoxNetLwipNAT.cpp
r49559 r49560 167 167 virtual int parseOpt(int rc, const RTGETOPTUNION& getOptVal); 168 168 /* VBoxNetNAT always needs Main */ 169 virtual bool isMainNeeded(){ return true; }169 virtual bool isMainNeeded() const { return true; } 170 170 private: 171 171 struct proxy_options m_ProxyOptions; -
trunk/src/VBox/NetworkServices/NetLib/VBoxNetBaseService.h
r49558 r49560 39 39 40 40 virtual int init(void); 41 virtual bool isMainNeeded() { return m_fNeedMain; }41 virtual bool isMainNeeded() const { return m_fNeedMain; } 42 42 /* VirtualBox instance */ 43 43 ComPtr<IVirtualBox> virtualbox;
Note:
See TracChangeset
for help on using the changeset viewer.