Add check for option 27

This commit is contained in:
Fatema BW 2022-07-28 22:54:59 -07:00 committed by GitHub
parent 70b3e28dd9
commit e2bd8f0eb1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
}
}