Lines Matching defs:riprt

156 struct riprt {
157 TAILQ_ENTRY(riprt) rrt_next; /* next destination */
159 struct riprt *rrt_same; /* same destination - future use */
167 TAILQ_HEAD(, riprt) riprt_head = TAILQ_HEAD_INITIALIZER(riprt_head);
214 int out_filter(struct riprt *, struct ifc *);
247 int addroute(struct riprt *, const struct in6_addr *, struct ifc *);
251 int tobeadv(struct riprt *, struct ifc *);
257 struct riprt *rtsearch(struct netinfo6 *);
558 struct riprt *rrt;
586 struct riprt *rrt, *rrt_tmp;
809 struct riprt *rrt;
948 out_filter(struct riprt *rrt, struct ifc *ifcp)
1019 tobeadv(struct riprt *rrt, struct ifc *ifcp)
1107 struct riprt *rrt;
1399 if ((rrt = MALLOC(struct riprt)) == NULL) {
1400 fatal("malloc: struct riprt");
1481 struct riprt *rrt;
1664 struct riprt *rrt;
1703 struct riprt *rrt;
1946 struct riprt *rrt = NULL;
1972 struct riprt *longest;
2044 struct riprt *rrt = NULL;
2140 struct riprt *rrt = NULL, *search_rrt, *loop_rrt;
2179 if ((rrt = MALLOC(struct riprt)) == NULL)
2180 fatal("malloc: struct riprt");
2251 struct riprt *rrt, *orrt;
2328 if ((rrt = MALLOC(struct riprt)) == NULL) {
2329 fatal("malloc: struct riprt");
2641 struct riprt *rrt, *orrt;
2701 if ((rrt = MALLOC(struct riprt)) == NULL) {
2702 fatal("malloc: struct riprt");
2797 addroute(struct riprt *rrt,
3098 struct riprt *rrt;
3151 struct riprt *rrt;
3223 rrt = (struct riprt *)malloc(sizeof(struct riprt));
3228 memset(rrt, 0, sizeof(struct riprt));
3292 * Return a pointer to riprt structure whose address and prefix length
3296 struct riprt *
3299 struct riprt *rrt;