TLS Server Name Indication
Problem this snippet solves:
Extensions to TLS encryption protocols after TLS v1.0 have added support for passing the desired servername as part of the initial encryption negotiation. This function...
Updated Aug 28, 2025
Version 2.0Joel_Moses
Nimbostratus
DevCentral MVP Emeritus!Joel_Moses
Nimbostratus
DevCentral MVP Emeritus!Chad_Jenison
Nimbostratus
Dec 10, 2017Is there any reason to think that the code for examining TLS ClientHello would break with TLS 1.3? If not, we'd want to modify this as per below, right?
from:
switch $tls_version {
"769" -
"770" -
"771" {
to:
switch $tls_version {
"769" -
"770" -
"771" -
"772" {