Changeset 49480 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Nov 14, 2013 3:13:54 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 90632
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/SrvIntNetR0.cpp
r48947 r49480 2380 2380 static void intnetR0IfSnoopIPv6SourceAddr(PINTNETIF pIf, PCRTNETIPV6 pIpHdr, uint32_t cbPacket, bool fGso) 2381 2381 { 2382 NOREF(fGso); 2383 2382 2384 /* 2383 2385 * Check the header size first to prevent access invalid data. … … 2937 2939 static bool intnetR0NetworkDetectAndFixNdBroadcast(PINTNETNETWORK pNetwork, PINTNETSG pSG, PRTNETETHERHDR pEthHdr) 2938 2940 { 2941 NOREF(pNetwork); 2942 2939 2943 if (RT_BE2H_U16(pEthHdr->EtherType) != RTNET_ETHERTYPE_IPV6) 2940 2944 return false; … … 2958 2962 pIPv6 = (PRTNETIPV6)bTmp; 2959 2963 } 2960 2961 PCRTNETNDP pNd = (PCRTNETNDP) (pIPv6 + 1);2962 2964 2963 2965 /* Check IPv6 destination address if it is a multicast address. */ … … 3002 3004 static void intnetR0NetworkSnoopNAFromWire(PINTNETNETWORK pNetwork, PINTNETSG pSG, PRTNETETHERHDR pEthHdr) 3003 3005 { 3006 NOREF(pEthHdr); 3007 3004 3008 /* 3005 3009 * Check the minimum size and get a linear copy of the thing to work on,
Note:
See TracChangeset
for help on using the changeset viewer.