Changeset 48047 in vbox for trunk/src/VBox
- Timestamp:
- Aug 26, 2013 2:29:57 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/VBoxLwipCore.cpp
r47886 r48047 55 55 { 56 56 int iLWIPInitiatorCounter; 57 PRTTIMER LwipArpTimer;58 PRTTIMER LwipTcpFastTimer;59 PRTTIMER LwipTcpSlowTimer;60 57 /* semaphore to coordinate 'tcpip' thread initialization */ 61 58 sys_sem_t LwipTcpIpSem; … … 70 67 71 68 72 /* Lwip Core Timer functions */73 void tmrLwipCoreArp(PRTTIMER pTimer, void *pvUser, uint64_t iTick)74 {75 lwip_etharp_tmr();76 }77 78 79 void tmrLwipCoreTcpFast(PRTTIMER pTimer, void *pvUser, uint64_t iTick)80 {81 lwip_tcp_fasttmr();82 }83 84 85 void tmrLwipCoreTcpSlow(PRTTIMER pTimer, void *pvUser, uint64_t iTick)86 {87 lwip_tcp_slowtmr();88 }89 90 69 /** 91 70 * @note: this function executed on TCPIP thread.
Note:
See TracChangeset
for help on using the changeset viewer.