diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2009-03-20 16:03:08 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2009-03-20 16:03:08 +0100 |
commit | 16e6a01a6454dc791b7af593390616b4a29724c7 (patch) | |
tree | d399bda96f4a03d3a328d3a770db618ab0dc9f87 /include | |
parent | f7b4b7bd19b16d11491f18891942f6d48c2fcf7e (diff) | |
download | conntrack-tools-16e6a01a6454dc791b7af593390616b4a29724c7.tar.gz conntrack-tools-16e6a01a6454dc791b7af593390616b4a29724c7.zip |
mcast: remove several unused structure fields
This patch removes several structure fields that are unused.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/mcast.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/mcast.h b/include/mcast.h index 30aefc0..38c77f9 100644 --- a/include/mcast.h +++ b/include/mcast.h @@ -18,11 +18,8 @@ struct mcast_conf { struct in_addr interface_addr; unsigned int interface_index6; } ifa; - int mtu; - int interface_idx; int sndbuf; int rcvbuf; - char iface[IFNAMSIZ]; }; struct mcast_stats { @@ -38,7 +35,6 @@ struct mcast_sock { struct sockaddr_in6 ipv6; } addr; socklen_t sockaddr_len; - int interface_idx; struct mcast_stats stats; }; |