Changeset 10924 in vbox
- Timestamp:
- Jul 29, 2008 3:48:35 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/intnet.h
r10923 r10924 623 623 /** Ignore any requests for promiscuous mode on the trunk host connection, quietly applied/ignored on open. */ 624 624 #define INTNET_OPEN_FLAGS_QUIETLY_IGNORE_PROMISC_TRUNK_HOST RT_BIT_32(7) 625 /** The mask of flags which causes securityincompatibilities. */626 #define INTNET_OPEN_FLAGS_ SECURITY_XOR_MASK (RT_BIT_32(1) | RT_BIT_32(2) | RT_BIT_32(4) | RT_BIT_32(6))625 /** The mask of flags which causes flag incompatibilities. */ 626 #define INTNET_OPEN_FLAGS_COMPATIBILITY_XOR_MASK (RT_BIT_32(0) | RT_BIT_32(1) | RT_BIT_32(2) | RT_BIT_32(4) | RT_BIT_32(6)) 627 627 /** The mask of flags is always ORed in, even on open. (the quiet stuff) */ 628 628 #define INTNET_OPEN_FLAGS_SECURITY_OR_MASK (RT_BIT_32(3) | RT_BIT_32(5) | RT_BIT_32(7)) -
trunk/src/VBox/Devices/Network/SrvIntNetR0.cpp
r10923 r10924 3122 3122 && !strcmp(pCur->szTrunk, pszTrunk))) 3123 3123 { 3124 if (!((pCur->fFlags ^ fFlags) & INTNET_OPEN_FLAGS_ SECURITY_XOR_MASK))3124 if (!((pCur->fFlags ^ fFlags) & INTNET_OPEN_FLAGS_COMPATIBILITY_XOR_MASK)) 3125 3125 { 3126 3126
Note:
See TracChangeset
for help on using the changeset viewer.