X-Git-Url: http://git.sameswireless.fr/l2tpns.git/blobdiff_plain/07e1df5b92a099b3b390822d0f594b175226dc01..0f20bfda6a2b5c756eeaa235b2eb48d4e4072bd0:/l2tpns.c diff --git a/l2tpns.c b/l2tpns.c index 1c50a3e..152c8ec 100644 --- a/l2tpns.c +++ b/l2tpns.c @@ -163,6 +163,7 @@ config_descriptt config_values[] = { CONFIG("icmp_rate", icmp_rate, INT), CONFIG("packet_limit", max_packets, INT), CONFIG("cluster_address", cluster_address, IPv4), + CONFIG("cluster_port", cluster_port, INT), CONFIG("cluster_interface", cluster_interface, STRING), CONFIG("cluster_mcast_ttl", cluster_mcast_ttl, INT), CONFIG("cluster_hb_interval", cluster_hb_interval, INT), @@ -5628,6 +5629,7 @@ static void update_config() memcpy(config->old_plugins, config->plugins, sizeof(config->plugins)); if (!config->multi_read_count) config->multi_read_count = 10; if (!config->cluster_address) config->cluster_address = inet_addr(DEFAULT_MCAST_ADDR); + if (!config->cluster_port) config->cluster_port = CLUSTERPORT; if (!*config->cluster_interface) strncpy(config->cluster_interface, DEFAULT_MCAST_INTERFACE, sizeof(config->cluster_interface) - 1);