diff options
author | Martin Mares <mj@ucw.cz> | 2008-08-25 11:19:49 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2008-08-25 11:19:49 +0000 |
commit | 057021df0d699f9c21368ab0fa51fe821cc9a544 (patch) | |
tree | 729c776649d05dfc1378988bbddd4d5fac8d97f7 /lib/ipv4.h | |
parent | 6c36c4b66be5c67a8d5cfa9578aa5a85ebebab6d (diff) |
Fix behavior of ipa_opposite().
It was giving wrong results on /30 networks.
Diffstat (limited to 'lib/ipv4.h')
-rw-r--r-- | lib/ipv4.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -53,7 +53,7 @@ typedef u32 ip_addr; #define ipa_hton(x) x = _MI(htonl(_I(x))) #define ipa_ntoh(x) x = _MI(ntohl(_I(x))) #define ipa_classify(x) ipv4_classify(_I(x)) -#define ipa_opposite(x) _MI(_I(x) ^ 1) +#define ipa_opposite(x,len) _MI(_I(x) ^ (len == 30 ? 3 : 1)) #define ipa_class_mask(x) _MI(ipv4_class_mask(_I(x))) #define ipa_from_u32(x) _MI(x) #define ipa_to_u32(x) _I(x) |