Lines Matching defs:r_list
64 add_entry(struct packet_head *r_list, struct rip_route *rr)
74 TAILQ_INSERT_TAIL(r_list, re, entry);
87 clear_list(struct packet_head *r_list)
91 while ((re = TAILQ_FIRST(r_list)) != NULL) {
92 TAILQ_REMOVE(r_list, re, entry);
144 send_request(struct packet_head *r_list, struct iface *i, struct nbr *nbr)
169 clear_list(r_list);
177 while (!TAILQ_EMPTY(r_list)) {
187 if (TAILQ_FIRST(r_list) == TAILQ_LAST(r_list, packet_head))
189 while (((entry = TAILQ_FIRST(r_list)) != NULL) &&
209 TAILQ_REMOVE(r_list, entry, entry);
221 send_response(struct packet_head *r_list, struct iface *i, struct nbr *nbr)
245 clear_list(r_list);
253 while (!TAILQ_EMPTY(r_list)) {
272 while ((entry = TAILQ_FIRST(r_list)) != NULL &&
300 TAILQ_REMOVE(r_list, entry, entry);