Changeset 11448 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Aug 15, 2008 6:17:28 PM (16 years ago)
- Location:
- trunk/src/VBox/Devices/Network
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvTAPOs2.cpp
r11267 r11448 238 238 * Read a frame, this will block for a while if nothing to read. 239 239 */ 240 char abBuf[ 4096];240 char abBuf[16384]; 241 241 ULONG Parm[2] = { ~0UL, ~0UL }; /* mysterious output */ 242 242 ULONG cbParm = sizeof(Parm); /* this one is actually ignored... */ … … 253 253 && cbRead > 0 /* cbRead */) 254 254 { 255 AssertMsg(cbRead <= 1536, ("cbRead=%d\n", cbRead)); 255 // The following assertion was commented out to support jumbo frames. 256 //AssertMsg(cbRead <= 1536, ("cbRead=%d\n", cbRead)); 256 257 257 258 /* -
trunk/src/VBox/Devices/Network/DrvTAPWin.cpp
r11269 r11448 64 64 OVERLAPPED overlappedRead; 65 65 DWORD dwNumberOfBytesRead; 66 uint8_t readBuffer[ 4096];66 uint8_t readBuffer[16384]; 67 67 68 68 TAP_VERSION tapVersion;
Note:
See TracChangeset
for help on using the changeset viewer.