Symbol: trie_head
regress/usr.sbin/bgpd/unittests/rde_trie_test.c
116
parse_file(FILE *in, struct trie_head *th)
regress/usr.sbin/bgpd/unittests/rde_trie_test.c
171
parse_roa_file(FILE *in, struct trie_head *th)
regress/usr.sbin/bgpd/unittests/rde_trie_test.c
236
test_file(FILE *in, struct trie_head *th)
regress/usr.sbin/bgpd/unittests/rde_trie_test.c
256
test_roa_file(FILE *in, struct trie_head *th)
regress/usr.sbin/bgpd/unittests/rde_trie_test.c
313
struct trie_head th = { 0 };
usr.sbin/bgpd/bgpd.h
1737
int trie_add(struct trie_head *, struct bgpd_addr *, uint8_t, uint8_t,
usr.sbin/bgpd/bgpd.h
1739
int trie_roa_add(struct trie_head *, struct roa *);
usr.sbin/bgpd/bgpd.h
1740
void trie_free(struct trie_head *);
usr.sbin/bgpd/bgpd.h
1741
int trie_match(struct trie_head *, struct bgpd_addr *, uint8_t, int);
usr.sbin/bgpd/bgpd.h
1742
int trie_roa_check(struct trie_head *, struct bgpd_addr *, uint8_t,
usr.sbin/bgpd/bgpd.h
1744
void trie_dump(struct trie_head *);
usr.sbin/bgpd/bgpd.h
1745
int trie_equal(struct trie_head *, struct trie_head *);
usr.sbin/bgpd/bgpd.h
293
struct trie_head th;
usr.sbin/bgpd/rde_trie.c
146
trie_add_v4(struct trie_head *th, struct in_addr *prefix, uint8_t plen)
usr.sbin/bgpd/rde_trie.c
229
trie_add_v6(struct trie_head *th, struct in6_addr *prefix, uint8_t plen)
usr.sbin/bgpd/rde_trie.c
318
trie_add(struct trie_head *th, struct bgpd_addr *prefix, uint8_t plen,
usr.sbin/bgpd/rde_trie.c
388
trie_roa_add(struct trie_head *th, struct roa *roa)
usr.sbin/bgpd/rde_trie.c
468
trie_free(struct trie_head *th)
usr.sbin/bgpd/rde_trie.c
476
trie_match_v4(struct trie_head *th, struct in_addr *prefix, uint8_t plen,
usr.sbin/bgpd/rde_trie.c
517
trie_match_v6(struct trie_head *th, struct in6_addr *prefix, uint8_t plen,
usr.sbin/bgpd/rde_trie.c
558
trie_match(struct trie_head *th, struct bgpd_addr *prefix, uint8_t plen,
usr.sbin/bgpd/rde_trie.c
573
trie_roa_check_v4(struct trie_head *th, struct in_addr *prefix, uint8_t plen,
usr.sbin/bgpd/rde_trie.c
621
trie_roa_check_v6(struct trie_head *th, struct in6_addr *prefix, uint8_t plen,
usr.sbin/bgpd/rde_trie.c
675
trie_roa_check(struct trie_head *th, struct bgpd_addr *prefix, uint8_t plen,
usr.sbin/bgpd/rde_trie.c
740
trie_equal(struct trie_head *a, struct trie_head *b)
usr.sbin/bgpd/rde_trie.c
791
trie_dump(struct trie_head *th)