BUILD: quic: use __fallthrough in quic_connect_server()

This avoids one build warning when preprocessing happens before compiling
with gcc >= 7.
diff --git a/src/proto_quic.c b/src/proto_quic.c
index d4a5a13..7267b67 100644
--- a/src/proto_quic.c
+++ b/src/proto_quic.c
@@ -367,7 +367,7 @@
 			switch (src->opts & CO_SRC_TPROXY_MASK) {
 			case CO_SRC_TPROXY_CLI:
 				conn_set_private(conn);
-				/* fall through */
+				__fallthrough;
 			case CO_SRC_TPROXY_ADDR:
 				flags = 3;
 				break;