diff options
author | Toni <matzeton@googlemail.com> | 2023-10-02 18:10:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-02 18:10:47 +0200 |
commit | a98d7ff433c234eeec83e96a4e33645d6f7205bd (patch) | |
tree | 0db721de48119869195ec957ab4458e4dba54aeb /src/lib/protocols/tls.c | |
parent | 77e5daf03e1ee7a8377a5a8906fe2c089c94ecf0 (diff) |
Added HAProxy protocol. (#2088)
* fixed tests/do.sh.in failure print
Signed-off-by: lns <matzeton@googlemail.com>
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/lib/protocols/tls.c')
-rw-r--r-- | src/lib/protocols/tls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/tls.c b/src/lib/protocols/tls.c index bedc3be59..09e10858e 100644 --- a/src/lib/protocols/tls.c +++ b/src/lib/protocols/tls.c @@ -2543,7 +2543,7 @@ int processClientServerHello(struct ndpi_detection_module_struct *ndpi_struct, } } else if(extension_id == 65037 /* ECH: latest drafts */) { #ifdef DEBUG_TLS - printf("Client TLS: ECH version 0x%x\n", extension_id; + printf("Client TLS: ECH version 0x%x\n", extension_id); #endif /* Beginning with draft-08, the version is the same as the code point for the "encrypted_client_hello" extension. */ |