diff options
author | Martin Mares <mj@ucw.cz> | 1999-05-14 20:03:09 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-05-14 20:03:09 +0200 |
commit | b23c5e0ff4e9071b2568bf2f7d437bc13273d17d (patch) | |
tree | 2e6ff94f799923b0c8cd70ebedd431368f67b059 /lib/ipv4.h | |
parent | 11ce4490fac7d0446802738f5fb8fd68c36bd30b (diff) | |
download | bird-b23c5e0ff4e9071b2568bf2f7d437bc13273d17d.tar bird-b23c5e0ff4e9071b2568bf2f7d437bc13273d17d.zip |
Added ip_skip_header() and modified OSPF to use it.
Diffstat (limited to 'lib/ipv4.h')
-rw-r--r-- | lib/ipv4.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -58,8 +58,11 @@ typedef u32 ip_addr; #define ipa_to_u32(x) _I(x) #define ipa_compare(x,y) ipv4_compare(_I(x),_I(y)) +#define ip_skip_header(x, y) ipv4_skip_header(x, y) + int ipv4_classify(u32); u32 ipv4_class_mask(u32); +byte *ipv4_skip_header(byte *, int *); static inline unsigned ipv4_hash(u32 a) { |