]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/net/ipip.h
[IPV6] SIT: Add SIOCGETPRL ioctl to get/dump PRL.
[linux-2.6-omap-h63xx.git] / include / net / ipip.h
index 549e132bca9c834638416182698169175859e80c..633ed4def8e3ab2fb27d3c0b964df23b0438d9e2 100644 (file)
@@ -24,6 +24,16 @@ struct ip_tunnel
        int                     mlink;
 
        struct ip_tunnel_parm   parms;
+
+       struct ip_tunnel_prl_entry      *prl;           /* potential router list */
+       unsigned int                    prl_count;      /* # of entries in PRL */
+};
+
+struct ip_tunnel_prl_entry
+{
+       struct ip_tunnel_prl_entry      *next;
+       __be32                          addr;
+       u16                             flags;
 };
 
 #define IPTUNNEL_XMIT() do {                                           \