diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2010-01-03 12:17:52 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2010-01-03 12:17:52 +0100 |
commit | cf31112f0d7618464097f71228f84bd534f1bc0f (patch) | |
tree | 68f7fa93bd2154a16169b4db3dc9c16e51c2e84f /lib | |
parent | 610bb3cff05f6d5b09c77724bc97295b809d15e2 (diff) | |
download | bird-cf31112f0d7618464097f71228f84bd534f1bc0f.tar bird-cf31112f0d7618464097f71228f84bd534f1bc0f.zip |
Implements MRTdump feature.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ipv4.h | 7 | ||||
-rw-r--r-- | lib/ipv6.h | 11 |
2 files changed, 18 insertions, 0 deletions
@@ -11,6 +11,7 @@ #include "lib/endian.h" #include "lib/bitops.h" +#include "lib/unaligned.h" #ifdef DEBUGGING @@ -63,6 +64,7 @@ typedef u32 ip_addr; /* ipa_pxlen() requires that x != y */ #define ipa_pxlen(x, y) ipv4_pxlen(_I(x), _I(y)) #define ipa_getbit(x, y) (_I(x) & (0x80000000 >> (y))) +#define ipa_put_addr(x, y) ipv4_put_addr(x, y) #define ip_skip_header(x, y) ipv4_skip_header(x, y) @@ -93,6 +95,11 @@ static inline u32 ipv4_pxlen(u32 a, u32 b) return 31 - u32_log2(a ^ b); } +static inline byte * ipv4_put_addr(byte *buf, ip_addr a) +{ + put_u32(buf, _I(a)); + return buf+4; +} #define IP_PREC_INTERNET_CONTROL 0xc0 @@ -14,6 +14,7 @@ #include <netinet/in.h> #include "lib/string.h" #include "lib/bitops.h" +#include "lib/unaligned.h" typedef struct ipv6_addr { u32 addr[4]; @@ -68,6 +69,7 @@ typedef struct ipv6_addr { /* ipa_pxlen() requires that x != y */ #define ipa_pxlen(x, y) ipv6_pxlen(x, y) #define ipa_getbit(x, y) ipv6_getbit(x, y) +#define ipa_put_addr(x, y) ipv6_put_addr(x, y) #define ipa_absolutize(x,y) ipv6_absolutize(x,y) /* In IPv6, SOCK_RAW does not return packet header */ @@ -115,6 +117,15 @@ static inline u32 ipv6_pxlen(ip_addr a, ip_addr b) return 32 * i + 31 - u32_log2(a.addr[i] ^ b.addr[i]); } +static inline byte * ipv6_put_addr(byte *buf, ip_addr a) +{ + put_u32(buf+0, _I0(a)); + put_u32(buf+4, _I1(a)); + put_u32(buf+8, _I2(a)); + put_u32(buf+12, _I3(a)); + return buf+16; +} + /* * RFC 1883 defines packet precendece, but RFC 2460 replaces it * by generic Traffic Class ID with no defined semantics. Better |