summaryrefslogtreecommitdiffstats
path: root/src/sync-notrack.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2008-12-08 11:09:02 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2008-12-08 11:09:02 +0100
commitbf6cfeb1dc6652eaff1b7c4edda45e15f5abf361 (patch)
tree936fa6dfa0aaabff35b3cd0a287f0623dfc04093 /src/sync-notrack.c
parent29b5df53bcbef17722ab2b389f3352c4e86b4795 (diff)
network: remove length parameter of mcast_buffered_send_netmsg()
This patch simplifies mcast_buffered_send_netmsg() by removing the length parameter. Instead, we use the length field in the nethdr to know the message size to be sent. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/sync-notrack.c')
-rw-r--r--src/sync-notrack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sync-notrack.c b/src/sync-notrack.c
index c7ac9b5..c5ea1e6 100644
--- a/src/sync-notrack.c
+++ b/src/sync-notrack.c
@@ -157,7 +157,7 @@ static int tx_queue_xmit(void *data1, const void *data2)
struct nethdr *net = data1;
size_t len = prepare_send_netmsg(STATE_SYNC(mcast_client), net);
- mcast_buffered_send_netmsg(STATE_SYNC(mcast_client), net, len);
+ mcast_buffered_send_netmsg(STATE_SYNC(mcast_client), net);
queue_del(tx_queue, net);
return 0;
@@ -172,7 +172,7 @@ static int tx_list_xmit(struct list_head *i, struct us_conntrack *u, int type)
list_del_init(i);
tx_list_len--;
- ret = mcast_buffered_send_netmsg(STATE_SYNC(mcast_client), net, len);
+ ret = mcast_buffered_send_netmsg(STATE_SYNC(mcast_client), net);
return ret;
}