Changeset 17697 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Mar 11, 2009 2:20:23 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/netif.h
r17690 r17697 104 104 DECLINLINE(ULONG) composeIPv6PrefixLenghFromAddress(PRTNETADDRIPV6 aAddrPtr) 105 105 { 106 return ASMBitFirstClear(aAddrPtr, sizeof(RTNETADDRIPV6)*8); 106 int res = ASMBitFirstClear(aAddrPtr, sizeof(RTNETADDRIPV6)); 107 return res != -1 ? res : 128; 107 108 } 108 109
Note:
See TracChangeset
for help on using the changeset viewer.