X-Git-Url: http://git.sameswireless.fr/l2tpns.git/blobdiff_plain/fc0a36320874bea43b9fd73df0e0990bfd3b59cd..b4451ee1a4e9b38331aee04e53092c3a2ee84b50:/cluster_slave.c diff --git a/cluster_slave.c b/cluster_slave.c index 289d96d..1ed03b0 100644 --- a/cluster_slave.c +++ b/cluster_slave.c @@ -1,5 +1,5 @@ // L2TPNS Cluster Master -// $Id: cluster_slave.c,v 1.2 2004-03-05 00:09:03 fred_nerk Exp $ +// $Id: cluster_slave.c,v 1.4 2004-05-24 04:12:48 fred_nerk Exp $ #include #include @@ -78,7 +78,7 @@ int handle_tunnel(char *buf, int l) // Ignore tunnel message if NOSTATEFILE exists if (config->ignore_cluster_updates) { - log(1, 0, 0, 0, "Discarding tunnel message from cluster master.\n", l, sizeof(tunnelt)); + log(1, 0, 0, 0, "Discarding tunnel message from cluster master.\n"); return 0; } @@ -114,7 +114,7 @@ int handle_session(char *buf, int l) // Ignore tunnel message if NOSTATEFILE exists if (config->ignore_cluster_updates) { - log(1, 0, 0, 0, "Discarding session message from cluster master.\n", l, sizeof(tunnelt)); + log(1, 0, 0, 0, "Discarding session message from cluster master.\n"); return 0; } @@ -164,10 +164,6 @@ int handle_session(char *buf, int l) } } } - /* - if (session[s].servicenet) - servicenet_session(s, 1); - */ return 0; }