- Timestamp:
- Aug 8, 2008 1:14:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvTAP.cpp
r11157 r11242 272 272 * Read the frame. 273 273 */ 274 char achBuf[ 4096];274 char achBuf[16384]; 275 275 size_t cbRead = 0; 276 276 #ifdef VBOX_WITH_CROSSBOW … … 286 286 if (VBOX_SUCCESS(rc)) 287 287 { 288 AssertMsg(cbRead <= 1536, ("cbRead=%d\n", cbRead)); 288 // Assertion removed to be able to support jumbo frames. 289 //AssertMsg(cbRead <= 1536, ("cbRead=%d\n", cbRead)); 289 290 290 291 /*
Note:
See TracChangeset
for help on using the changeset viewer.