aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/ip.h
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2011-07-05 04:05:48 -0400
committerDavid S. Miller <davem@davemloft.net>2011-07-06 01:34:52 -0400
commit595fc71baa1e80420fe89a400ff2d9cc099d22fc (patch)
tree9b48753d313b6985152f63616c7a0026d18f5ad0 /include/net/ip.h
parentdc99f600698dcac69b8f56dda9a8a00d645c5ffc (diff)
ipv4: Add ip_defrag() agent IP_DEFRAG_AF_PACKET.
Elide the ICMP on frag queue timeouts unconditionally for this user. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ip.h')
-rw-r--r--include/net/ip.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/ip.h b/include/net/ip.h
index 9fa9416d14d7..aa76c7a4d9c3 100644
--- a/include/net/ip.h
+++ b/include/net/ip.h
@@ -404,7 +404,8 @@ enum ip_defrag_users {
404 __IP_DEFRAG_CONNTRACK_BRIDGE_IN = IP_DEFRAG_CONNTRACK_BRIDGE_IN + USHRT_MAX, 404 __IP_DEFRAG_CONNTRACK_BRIDGE_IN = IP_DEFRAG_CONNTRACK_BRIDGE_IN + USHRT_MAX,
405 IP_DEFRAG_VS_IN, 405 IP_DEFRAG_VS_IN,
406 IP_DEFRAG_VS_OUT, 406 IP_DEFRAG_VS_OUT,
407 IP_DEFRAG_VS_FWD 407 IP_DEFRAG_VS_FWD,
408 IP_DEFRAG_AF_PACKET,
408}; 409};
409 410
410int ip_defrag(struct sk_buff *skb, u32 user); 411int ip_defrag(struct sk_buff *skb, u32 user);