diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2021-06-01 16:50:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-01 16:50:28 +0200 |
commit | f4dbeecba9695e193c63173fb0cd985318be6dd1 (patch) | |
tree | 785b7b891e7aef98c3c1f9ceef94397edc8fcb40 | |
parent | c6208586715deffa1aa11244a5d9cb6cca459a6d (diff) |
TLS: improve check for common ALPNs (#1191)
Facebook is still using its own ALPN for HTTP2 as well
-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 33d5436d2..4b54b47a0 100644 --- a/src/lib/protocols/tls.c +++ b/src/lib/protocols/tls.c @@ -1071,7 +1071,7 @@ static void tlsCheckUncommonALPN(struct ndpi_flow_struct *flow) "http/0.9", "http/1.0", "http/1.1", "spdy/1", "spdy/2", "spdy/3", "spdy/3.1", "stun.turn", "stun.nat-discovery", - "h2", "h2c", "h2-16", "h2-15", "h2-14", + "h2", "h2c", "h2-16", "h2-15", "h2-14", "h2-fb", "webrtc", "c-webrtc", "ftp", "imap", "pop3", "managesieve", "coap", "xmpp-client", "xmpp-server", |