From b2feb76dc31297fb42c481b9b751eafa5ce00ca5 Mon Sep 17 00:00:00 2001 From: David Timber Date: Fri, 22 Nov 2024 17:37:04 +0100 Subject: Patch writeups/ipv6/eyeball/eyeball.c ... - Increase Resolution Delay to 300 ms --- writeups/ipv6/eyeball/eyeball.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/writeups/ipv6/eyeball/eyeball.c b/writeups/ipv6/eyeball/eyeball.c index 32a6033..af08ccf 100644 --- a/writeups/ipv6/eyeball/eyeball.c +++ b/writeups/ipv6/eyeball/eyeball.c @@ -26,7 +26,9 @@ #include #define ARGV0 "eyeball" -#define DEFAULT_RES_DELAY 0.05 +// RFC 6555: 300 ms preferential delay +// "Resolution Delay" as per RFC 8305 section 3: 50 ms +#define DEFAULT_RES_DELAY 0.3 // 300 ms void ts_sub ( @@ -269,7 +271,6 @@ void init_opts (void) { // connection timeout: 10 s opts.op_timeout.tv_sec = 10; opts.op_timeout.tv_nsec = 0; - // "Resolution Delay" as per RFC 8305 section 3: 50 ms opts.res_delay = DEFAULT_RES_DELAY; } -- cgit