- Timestamp:
- Dec 2, 2024 4:25:39 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvNATlibslirp.cpp
r107028 r107213 156 156 { 157 157 struct slirpTimer *next; 158 uint32_t uTimeExpire;158 int64_t uTimeExpire; 159 159 SlirpTimerCb pHandler; 160 160 void *opaque; … … 1095 1095 Assert(pThis); 1096 1096 1097 uint32_t currTime = drvNAT_ClockGetNsCb(pThis) / (1000 * 1000);1097 int64_t currTime = drvNAT_ClockGetNsCb(pThis) / (1000 * 1000); 1098 1098 SlirpTimer *pCurrent = pThis->pNATState->pTimerHead; 1099 1099 while (pCurrent != NULL)
Note:
See TracChangeset
for help on using the changeset viewer.