From e2bd8f0eb171d565108cf444cd672fce01b618fd Mon Sep 17 00:00:00 2001 From: Fatema BW Date: Thu, 28 Jul 2022 22:54:59 -0700 Subject: [PATCH] Add check for option 27 --- testing/btest/core/tcp/options.zeek | 3 +++ 1 file changed, 3 insertions(+) diff --git a/testing/btest/core/tcp/options.zeek b/testing/btest/core/tcp/options.zeek index 4a561c988d..bdb516c3cd 100644 --- a/testing/btest/core/tcp/options.zeek +++ b/testing/btest/core/tcp/options.zeek @@ -38,6 +38,9 @@ event tcp_options(c: connection, is_orig: bool, options: TCP::OptionList) print fmt(" send ts: %s", o$send_timestamp); print fmt(" echo ts: %s", o$echo_timestamp); break; + case 27: + print fmt(" TTL Diff: %s", o$ttl_diff); + break; } } }