It may be worth it in the future to explicitly ignore TLS session resumption ClientHellos. Now we don't, and I need to investigate how best to handle this.
Rule for TLS 1.2 is:
if tls.ClientHello.SessionIdLength == 0:
not session_resumption
else:
session_resumption
It may be worth it in the future to explicitly ignore TLS session resumption ClientHellos. Now we don't, and I need to investigate how best to handle this.
Rule for TLS 1.2 is:
if tls.ClientHello.SessionIdLength == 0:
not session_resumption
else:
session_resumption