diff options
Diffstat (limited to 'include/net/ipip.h')
-rw-r--r-- | include/net/ipip.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/net/ipip.h b/include/net/ipip.h index 549e132bca9c..633ed4def8e3 100644 --- a/include/net/ipip.h +++ b/include/net/ipip.h | |||
@@ -24,6 +24,16 @@ struct ip_tunnel | |||
24 | int mlink; | 24 | int mlink; |
25 | 25 | ||
26 | struct ip_tunnel_parm parms; | 26 | struct ip_tunnel_parm parms; |
27 | |||
28 | struct ip_tunnel_prl_entry *prl; /* potential router list */ | ||
29 | unsigned int prl_count; /* # of entries in PRL */ | ||
30 | }; | ||
31 | |||
32 | struct ip_tunnel_prl_entry | ||
33 | { | ||
34 | struct ip_tunnel_prl_entry *next; | ||
35 | __be32 addr; | ||
36 | u16 flags; | ||
27 | }; | 37 | }; |
28 | 38 | ||
29 | #define IPTUNNEL_XMIT() do { \ | 39 | #define IPTUNNEL_XMIT() do { \ |