From ca2d9809ad75c4d7ba343cbc78f40e8676e21cb5 Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Sun, 13 Apr 2008 22:28:42 -0700 Subject: [PATCH] --- yaml --- r: 90655 b: refs/heads/master c: 67019cc9ee3f4868c8e5e493b2873c4722306019 h: refs/heads/master i: 90653: 64ed13856c8ad647e721d41dbdacc1a1a537b4f1 90651: f71fc5ca98e6090857b458bdd89e75a6bf2ef096 90647: a9ee8a97223b75a2ea5957168ba2f5e4c9c4ae59 90639: 29db591dfb9109a155164e9261051b1225c326a2 90623: f004633da80074e02db9f6a0ac6dd7900b2d3774 v: v3 --- [refs] | 2 +- trunk/include/net/net_namespace.h | 4 ++++ trunk/include/net/netns/dccp.h | 7 +++++++ 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 trunk/include/net/netns/dccp.h diff --git a/[refs] b/[refs] index 01936dd1f53b..183d374dbf18 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 5f4472c5a640c9671ca5becaebdfd6e651482176 +refs/heads/master: 67019cc9ee3f4868c8e5e493b2873c4722306019 diff --git a/trunk/include/net/net_namespace.h b/trunk/include/net/net_namespace.h index 0ab62ed2fdef..e2aee2689abe 100644 --- a/trunk/include/net/net_namespace.h +++ b/trunk/include/net/net_namespace.h @@ -13,6 +13,7 @@ #include #include #include +#include #include struct proc_dir_entry; @@ -54,6 +55,9 @@ struct net { #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) struct netns_ipv6 ipv6; #endif +#if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE) + struct netns_dccp dccp; +#endif #ifdef CONFIG_NETFILTER struct netns_xt xt; #endif diff --git a/trunk/include/net/netns/dccp.h b/trunk/include/net/netns/dccp.h new file mode 100644 index 000000000000..056e6adc70b6 --- /dev/null +++ b/trunk/include/net/netns/dccp.h @@ -0,0 +1,7 @@ +#ifndef __NETNS_DCCP_H__ +#define __NETNS_DCCP_H__ + +struct netns_dccp { +}; + +#endif