summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonnie Sahlberg <sahlberg@ronnie>2007-10-17 15:03:58 +1000
committerRonnie Sahlberg <sahlberg@ronnie>2007-10-17 15:03:58 +1000
commit537841fadb82dc697b5fa97e978ea1eecfb8c31e (patch)
tree3d26f42ec1b0b742c6e4d201e2159b9fe00d36e8
parent9a93f4b8df2ef87c88bbf11ca5634788af1ddefd (diff)
downloadsamba-537841fadb82dc697b5fa97e978ea1eecfb8c31e.tar.gz
samba-537841fadb82dc697b5fa97e978ea1eecfb8c31e.tar.xz
samba-537841fadb82dc697b5fa97e978ea1eecfb8c31e.zip
use NF_DROP instead of NF_STOLEN when we tell the kernel to not worry
about this packet any more and just forget it ever saw it (This used to be ctdb commit 42a2a777cbc15a8cbbea7ecf2fb1c6dafa242d0c)
-rw-r--r--ctdb/utils/ipmux/ipmux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/utils/ipmux/ipmux.c b/ctdb/utils/ipmux/ipmux.c
index 948640f4e8..20affd8e55 100644
--- a/ctdb/utils/ipmux/ipmux.c
+++ b/ctdb/utils/ipmux/ipmux.c
@@ -223,7 +223,7 @@ int main(int argc, const char *argv[])
about this packet any more
*/
ret = sendto(s, &ipqp->payload[0], ipqp->data_len, 0, &ipmux_nodes[hash].sin, sizeof(struct sockaddr_in));
- ipq_set_verdict(ipqh, ipqp->packet_id, NF_STOLEN, 0, pktbuf);
+ ipq_set_verdict(ipqh, ipqp->packet_id, NF_DROP, 0, pktbuf);
}