BUG/MINOR: quic: Wrong datagram dispatch because of qc_check_dcid()
There was a parenthesis placed in the wrong place for a memcmp().
As a consequence, clients could not reuse a UDP address for a new connection.
Must be backported to 2.7.
diff --git a/src/quic_conn.c b/src/quic_conn.c
index bf0581c..a73f7c0 100644
--- a/src/quic_conn.c
+++ b/src/quic_conn.c
@@ -7542,7 +7542,7 @@
if ((qc->scid.len == dcid_len &&
memcmp(qc->scid.data, dcid, dcid_len) == 0) ||
(qc->odcid.len == dcid_len &&
- memcmp(qc->odcid.data, dcid, dcid_len)) == 0) {
+ memcmp(qc->odcid.data, dcid, dcid_len) == 0)) {
return 1;
}