From: Frédéric Lécaille Date: Thu, 16 Sep 2021 09:04:49 +0000 (+0200) Subject: MINOR: quic: Add a typedef for unsigned long long X-Git-Tag: v2.5-dev8~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb6dfab88966f07f5655fbb839301d4759851da2;p=thirdparty%2Fhaproxy.git MINOR: quic: Add a typedef for unsigned long long As we manipulate very uint64_t variables which must be cast to unsigned long long to be printed, let's add this useful type definition. --- diff --git a/include/haproxy/xprt_quic-t.h b/include/haproxy/xprt_quic-t.h index df0125e908..1bbae968da 100644 --- a/include/haproxy/xprt_quic-t.h +++ b/include/haproxy/xprt_quic-t.h @@ -41,6 +41,8 @@ #include #include +typedef unsigned long long ull; + #define QUIC_PROTOCOL_VERSION_DRAFT_28 0xff00001c /* draft-28 */ #define QUIC_PROTOCOL_VERSION_DRAFT_29 0xff00001d /* draft-29 */ #define QUIC_PROTOCOL_VERSION_1 0x00000001 /* V1 */