Changeset 16083 in vbox for trunk/src/VBox
- Timestamp:
- Jan 20, 2009 1:19:52 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvNAT.cpp
r16078 r16083 486 486 return; 487 487 } 488 LogRel(("NAT:Couldn't alloc the new queue item to send\n")); 488 static unsigned cDroppedPackets; 489 if (cDroppedPackets < 64) 490 { 491 cDroppedPackets++; 492 LogRel(("NAT: Dropping package (couldn't alloc queue item to)\n")); 493 } 489 494 RTMemFree((void *)pItem->pu8Buf); 490 495 #endif
Note:
See TracChangeset
for help on using the changeset viewer.