Changeset 28221 in vbox for trunk/src/VBox
- Timestamp:
- Apr 12, 2010 5:07:27 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
r28219 r28221 558 558 pPkt->csum_offset = RT_OFFSETOF(RTNETUDP, uh_sum); 559 559 # else 560 pPkt->h.raw = skb->data + pSG->GsoCtx.offHdr2;560 pPkt->h.raw = pPkt->data + pSG->GsoCtx.offHdr2; 561 561 if (fGsoType & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)) 562 562 pPkt->csum = RT_OFFSETOF(RTNETTCP, th_sum); … … 895 895 */ 896 896 skb_reset_mac_header(pSkb); 897 pSkb->mac_len = pSkb->network_header - pSkb->mac_header; 897 pSkb->mac_len = pSkb->network_header - pSkb->mac_header; /** @todo fix this compile erorr too! */ 898 898 899 899 /*
Note:
See TracChangeset
for help on using the changeset viewer.