Changeset 28131 in vbox
- Timestamp:
- Apr 9, 2010 9:50:19 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59854
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevE1000.cpp
r28126 r28131 1952 1952 E1kLog2(("%s e1kRxChecksumOffload: EtherType=%x\n", INSTANCE(pState), uEtherType)); 1953 1953 1954 //pStatus->fIPE = false;1955 //pStatus->fTCPE = false;1956 1954 switch (uEtherType) 1957 1955 { 1956 /* @todo 1957 * It is not safe to bypass checksum verification for packets coming 1958 * from real wire. We currently unable to tell where packets are 1959 * coming from so we tell the driver to ignore our checksum flags 1960 * and do verification in software. 1961 */ 1962 #if 0 1958 1963 case 0x800: /* IPv4 */ 1959 1964 pStatus->fIXSM = false; … … 1968 1973 pStatus->fTCPCS = true; 1969 1974 break; 1975 #endif 1970 1976 default: /* ARP, VLAN, etc. */ 1971 1977 pStatus->fIXSM = true;
Note:
See TracChangeset
for help on using the changeset viewer.