diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2008-11-30 14:01:29 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2008-11-30 14:01:29 +0100 |
commit | 67994842694e57a42f524e228ca7acc564f2104f (patch) | |
tree | dbd3a3ca8317c5bee18799fb2d51ea0e4e22e6de /include/network.h | |
parent | 1fadc34c80a17e291f5ae86ecb84efbdb2aab265 (diff) | |
download | conntrack-tools-67994842694e57a42f524e228ca7acc564f2104f.tar.gz conntrack-tools-67994842694e57a42f524e228ca7acc564f2104f.zip |
network: make tx buffer initialization independent of mcast config
This patch changes the prototype of mcast_buffered_init() to receive
as argument the MTU size instead of the multicast configuration. This
decouples the initialization of the tx buffer from the multicast
configuration. This patch is needed by the multi-dedicated link
support.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/network.h')
-rw-r--r-- | include/network.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/network.h b/include/network.h index f24fb5f..5da1db5 100644 --- a/include/network.h +++ b/include/network.h @@ -75,7 +75,7 @@ int mcast_track_is_seq_set(void); struct mcast_conf; -int mcast_buffered_init(struct mcast_conf *mconf); +int mcast_buffered_init(int mtu); void mcast_buffered_destroy(void); int mcast_buffered_send_netmsg(struct mcast_sock *m, void *data, size_t len); ssize_t mcast_buffered_pending_netmsg(struct mcast_sock *m); |