Lines Matching refs:riprt

146 struct riprt {
147 TAILQ_ENTRY(riprt) rrt_next; /* next destination */
149 struct riprt *rrt_same; /* same destination - future use */
157 static TAILQ_HEAD(, riprt) riprt_head = TAILQ_HEAD_INITIALIZER(riprt_head);
205 static int out_filter(struct riprt *, struct ifc *);
236 static int addroute(struct riprt *, const struct in6_addr *, struct ifc *);
242 static int tobeadv(struct riprt *, struct ifc *);
248 static struct riprt *rtsearch(struct netinfo6 *);
550 struct riprt *rrt;
578 struct riprt *rrt, *rrt_tmp;
810 struct riprt *rrt;
949 out_filter(struct riprt *rrt, struct ifc *ifcp)
1020 tobeadv(struct riprt *rrt, struct ifc *ifcp)
1109 struct riprt *rrt;
1402 if ((rrt = MALLOC(struct riprt)) == NULL) {
1403 fatal("malloc: struct riprt");
1484 struct riprt *rrt;
1667 struct riprt *rrt;
1706 struct riprt *rrt;
1959 struct riprt *rrt = NULL;
1985 struct riprt *longest;
2057 struct riprt *rrt = NULL;
2153 struct riprt *rrt = NULL, *search_rrt, *loop_rrt;
2192 if ((rrt = MALLOC(struct riprt)) == NULL)
2193 fatal("malloc: struct riprt");
2266 struct riprt *rrt, *orrt;
2343 if ((rrt = MALLOC(struct riprt)) == NULL) {
2344 fatal("malloc: struct riprt");
2655 struct riprt *rrt, *orrt;
2715 if ((rrt = MALLOC(struct riprt)) == NULL) {
2716 fatal("malloc: struct riprt");
2811 addroute(struct riprt *rrt,
3115 struct riprt *rrt;
3168 struct riprt *rrt;
3240 rrt = (struct riprt *)malloc(sizeof(struct riprt));
3245 memset(rrt, 0, sizeof(struct riprt));
3309 * Return a pointer to riprt structure whose address and prefix length
3313 static struct riprt *
3316 struct riprt *rrt;