Changeset 48903 in vbox for trunk/src/VBox/NetworkServices
- Timestamp:
- Oct 5, 2013 6:56:24 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 89583
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/NAT/VBoxNetLwipNAT.cpp
r48876 r48903 178 178 { 179 179 public: 180 PortForwardListener():m_pNAT(NULL){} 180 181 181 182 HRESULT init(VBoxNetLwipNAT *pNAT) 182 183 { 184 AssertPtrReturn(pNAT, E_INVALIDARG); 185 183 186 m_pNAT = pNAT; 184 187 return S_OK; 185 188 } 186 189 187 HRESULT init() { return init(NULL); } 188 189 void uninit() { init(NULL); } 190 HRESULT init() 191 { 192 m_pNAT = NULL; 193 return S_OK; 194 } 195 196 void uninit() { m_pNAT = NULL; } 190 197 191 198 STDMETHOD(HandleEvent)(VBoxEventType_T aEventType, IEvent *pEvent)
Note:
See TracChangeset
for help on using the changeset viewer.