diff options
Diffstat (limited to 'include/linux/ipv6.h')
-rw-r--r-- | include/linux/ipv6.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h index 713eb5eaa81f..09ea01a8a99c 100644 --- a/include/linux/ipv6.h +++ b/include/linux/ipv6.h | |||
@@ -178,6 +178,9 @@ struct ipv6_devconf { | |||
178 | #endif | 178 | #endif |
179 | __s32 proxy_ndp; | 179 | __s32 proxy_ndp; |
180 | __s32 accept_source_route; | 180 | __s32 accept_source_route; |
181 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD | ||
182 | __s32 optimistic_dad; | ||
183 | #endif | ||
181 | void *sysctl; | 184 | void *sysctl; |
182 | }; | 185 | }; |
183 | 186 | ||
@@ -208,6 +211,7 @@ enum { | |||
208 | DEVCONF_PROXY_NDP, | 211 | DEVCONF_PROXY_NDP, |
209 | __DEVCONF_OPTIMISTIC_DAD, | 212 | __DEVCONF_OPTIMISTIC_DAD, |
210 | DEVCONF_ACCEPT_SOURCE_ROUTE, | 213 | DEVCONF_ACCEPT_SOURCE_ROUTE, |
214 | DEVCONF_OPTIMISTIC_DAD, | ||
211 | DEVCONF_MAX | 215 | DEVCONF_MAX |
212 | }; | 216 | }; |
213 | 217 | ||
@@ -219,6 +223,16 @@ enum { | |||
219 | #include <net/if_inet6.h> /* struct ipv6_mc_socklist */ | 223 | #include <net/if_inet6.h> /* struct ipv6_mc_socklist */ |
220 | #include <net/inet_sock.h> | 224 | #include <net/inet_sock.h> |
221 | 225 | ||
226 | static inline struct ipv6hdr *ipv6_hdr(const struct sk_buff *skb) | ||
227 | { | ||
228 | return (struct ipv6hdr *)skb_network_header(skb); | ||
229 | } | ||
230 | |||
231 | static inline struct ipv6hdr *ipipv6_hdr(const struct sk_buff *skb) | ||
232 | { | ||
233 | return (struct ipv6hdr *)skb_transport_header(skb); | ||
234 | } | ||
235 | |||
222 | /* | 236 | /* |
223 | This structure contains results of exthdrs parsing | 237 | This structure contains results of exthdrs parsing |
224 | as offsets from skb->nh. | 238 | as offsets from skb->nh. |