- Timestamp:
- Dec 9, 2013 6:57:03 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/NAT/VBoxNetLwipNAT.cpp
r49735 r49823 180 180 uint16_t m_u16Mtu; 181 181 netif m_LwipNetIf; 182 /* Queues */183 RTREQQUEUE hReqIntNet;184 182 /* thread where we're waiting for a frames, no semaphores needed */ 185 183 RTTHREAD hThrIntNetRecv; … … 197 195 const char **getHostNameservers(); 198 196 199 RTSEMEVENT hSemSVC;200 197 /* Only for debug needs, by default NAT service should load rules from SVC 201 198 * on startup, and then on sync them on events. … … 921 918 /* end of COM initialization */ 922 919 923 rc = RTSemEventCreate(&hSemSVC);924 AssertRCReturn(rc, rc);925 926 rc = RTReqQueueCreate(&hReqIntNet);927 AssertRCReturn(rc, rc);928 929 920 rc = g_pLwipNat->tryGoOnline(); 930 921 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.