From 916729963f380263aacd4bc78365d0b0b0b2cdaf Mon Sep 17 00:00:00 2001 From: lemoer Date: Thu, 1 Dec 2016 00:19:21 +0100 Subject: [PATCH] respondd: default max multicast delay is now 0 seconds --- net/respondd/src/respondd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/respondd/src/respondd.c b/net/respondd/src/respondd.c index 8e00e48..4e9b383 100644 --- a/net/respondd/src/respondd.c +++ b/net/respondd/src/respondd.c @@ -52,7 +52,7 @@ #define SCHEDULE_LEN 8 #define REQUEST_MAXLEN 256 -#define MAX_MULTICAST_DELAY_DEFAULT 10000 +#define MAX_MULTICAST_DELAY_DEFAULT 0 struct interface_delay_info { struct interface_delay_info *next; @@ -104,7 +104,7 @@ static void usage() { puts(" -g multicast group, e.g. ff02::2:1001"); puts(" -i interface on which the group is joined"); puts(" -t maximum delay seconds before multicast responses"); - puts(" for the last specified mulicast interface (default: 10)"); + puts(" for the last specified multicast interface (default: 0)"); puts(" -d data provider directory (default: current directory)"); puts(" -h this help\n"); }