diff options
author | Martin Mares <mj@ucw.cz> | 2000-05-13 13:17:49 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-05-13 13:17:49 +0200 |
commit | 758458be054ebdf4cd77620faf214f2b491a49dc (patch) | |
tree | e8cdebbcf3095ddc1db63ac3c5b611f9708c9879 /lib | |
parent | 02bd064ab76f163313261dad5c273cb376be2a75 (diff) | |
download | bird-758458be054ebdf4cd77620faf214f2b491a49dc.tar bird-758458be054ebdf4cd77620faf214f2b491a49dc.zip |
Unified parsing of prefixes.
Had to rename `prefix' in filters to `fprefix'.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ip.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -41,9 +41,14 @@ char *ip_scope_text(unsigned); /* - * Is it a valid network prefix? + * Network prefixes */ +struct prefix { + ip_addr addr; + int len; +}; + #define ip_is_prefix(a,l) (!ipa_nonzero(ipa_and(a, ipa_not(ipa_mkmask(l))))) /* |