Searched defs:radix_node_head (Results 1 – 2 of 2) sorted by relevance
/freebsd/sbin/routed/ |
H A D | radix.h | 105 struct radix_node_head { struct 111 struct radix_node_head *head, struct radix_node nodes[]); argument 114 struct radix_node_head *head, struct radix_node nodes[]); argument 116 (void *v, void *mask, struct radix_node_head *head); argument 118 (void *v, void *mask, struct radix_node_head *head); argument 120 (void *v, struct radix_node_head *head); argument 122 (void *v, void *mask, struct radix_node_head *head); argument 124 (void *v, struct radix_node_head *head); argument 126 (struct radix_node_head *head, argument 138 int rn_inithead(struct radix_node_head **head, int off); argument
|
/freebsd/sys/net/ |
H A D | radix.h | 128 struct radix_node_head { struct 129 struct radix_head rh; 130 rn_matchaddr_f_t *rnh_matchaddr; /* longest match for sockaddr */ 131 rn_addaddr_f_t *rnh_addaddr; /* add based on sockaddr*/ 132 rn_deladdr_f_t *rnh_deladdr; /* remove based on sockaddr */ 133 rn_lookup_f_t *rnh_lookup; /* exact match for sockaddr */ 134 rn_walktree_t *rnh_walktree; /* traverse tree */ 135 rn_walktree_from_t *rnh_walktree_from; /* traverse tree below a */ 136 rn_close_t *rnh_close; /*do something when the last ref drops*/ 137 struct radix_node rnh_nodes[3]; /* empty tree for common case */ [all …]
|