]> git.proxmox.com Git - mirror_frr.git/blobdiff - ripngd/ripng_nexthop.c
Merge pull request #5681 from opensourcerouting/manpage-rename
[mirror_frr.git] / ripngd / ripng_nexthop.c
index 74a132aa941eb05dfa88f007353d15dcef9023b1..ba6e52fdda0e7f290443d1b73efe655a54524e93 100644 (file)
@@ -39,6 +39,8 @@
 #include "ripngd/ripng_debug.h"
 #include "ripngd/ripng_nexthop.h"
 
+DEFINE_MTYPE_STATIC(RIPNGD, RIPNG_RTE_DATA, "RIPng rte data")
+
 #define DEBUG 1
 
 #define min(a, b) ((a) < (b) ? (a) : (b))
@@ -114,7 +116,8 @@ void ripng_rte_add(struct list *ripng_rte_list, struct prefix_ipv6 *p,
 void ripng_rte_send(struct list *ripng_rte_list, struct interface *ifp,
                    struct sockaddr_in6 *to)
 {
-
+       struct ripng_interface *ri = ifp->info;
+       struct ripng *ripng = ri->ripng;
        struct ripng_rte_data *data;
        struct listnode *node, *nnode;