From: Willy Tarreau Date: Mon, 30 May 2022 14:37:17 +0000 (+0200) Subject: BUILD: quic: use inttypes.h instead of stdint.h X-Git-Tag: v2.6.0~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91a87918c99874e7e475063fb5f5a936e23979f5;p=thirdparty%2Fhaproxy.git BUILD: quic: use inttypes.h instead of stdint.h The usual build joke on uncommon systems (AIX this time, though some versions of Solaris are known for missing it as well). --- diff --git a/include/haproxy/ncbuf-t.h b/include/haproxy/ncbuf-t.h index fdeb58babe..93c5d433e2 100644 --- a/include/haproxy/ncbuf-t.h +++ b/include/haproxy/ncbuf-t.h @@ -62,7 +62,7 @@ * */ -#include +#include /* ncb_sz_t is the basic type used in ncbuf to represent data and gap sizes. * Use a bigger type to extend the maximum data size supported in the buffer. diff --git a/include/haproxy/quic_cc-t.h b/include/haproxy/quic_cc-t.h index 5c50a6c079..09940b4cdd 100644 --- a/include/haproxy/quic_cc-t.h +++ b/include/haproxy/quic_cc-t.h @@ -26,8 +26,8 @@ #error "Must define USE_OPENSSL" #endif +#include #include /* size_t */ -#include #include diff --git a/include/haproxy/quic_enc.h b/include/haproxy/quic_enc.h index 6f12ac3648..169845a3dd 100644 --- a/include/haproxy/quic_enc.h +++ b/include/haproxy/quic_enc.h @@ -26,7 +26,7 @@ #error "Must define USE_OPENSSL" #endif -#include +#include #include #include diff --git a/include/haproxy/quic_frame-t.h b/include/haproxy/quic_frame-t.h index 5636cc810d..8aa95411b1 100644 --- a/include/haproxy/quic_frame-t.h +++ b/include/haproxy/quic_frame-t.h @@ -26,7 +26,7 @@ #error "Must define USE_OPENSSL" #endif -#include +#include #include #include diff --git a/include/haproxy/quic_loss-t.h b/include/haproxy/quic_loss-t.h index f91781f503..9d2576f46d 100644 --- a/include/haproxy/quic_loss-t.h +++ b/include/haproxy/quic_loss-t.h @@ -26,7 +26,7 @@ #error "Must define USE_OPENSSL" #endif -#include +#include /* Maximum reordering in packets. */ #define QUIC_LOSS_PACKET_THRESHOLD 3 diff --git a/include/haproxy/quic_tp-t.h b/include/haproxy/quic_tp-t.h index b4e948ebbb..47301db48c 100644 --- a/include/haproxy/quic_tp-t.h +++ b/include/haproxy/quic_tp-t.h @@ -5,7 +5,7 @@ #error "Must define USE_OPENSSL" #endif -#include +#include #define QUIC_STATELESS_RESET_TOKEN_LEN 16 diff --git a/include/haproxy/xprt_quic.h b/include/haproxy/xprt_quic.h index 7e3bb35daa..d2fe63f28d 100644 --- a/include/haproxy/xprt_quic.h +++ b/include/haproxy/xprt_quic.h @@ -26,7 +26,7 @@ #error "Must define USE_OPENSSL" #endif -#include +#include #include #include