downgrade TLS error to info (fix #367)

This commit is contained in:
Yves Rűtschlé 2022-11-20 18:23:43 +01:00
parent 555717e345
commit 40c616e94c

2
tls.c
View File

@ -83,7 +83,7 @@ parse_tls_header(const struct TLSProtocol *tls_data, const char *data, size_t da
tls_content_type = data[0];
if (tls_content_type != TLS_HANDSHAKE_CONTENT_TYPE) {
print_message(msg_probe_error, "Request did not begin with TLS handshake.\n");
print_message(msg_probe_info, "Request did not begin with TLS handshake.\n");
return TLS_EPROTOCOL;
}