mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-22 04:10:48 +00:00
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).
This commit is contained in:
parent
d46b5b94f0
commit
91a87918c9
@ -62,7 +62,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
/* 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.
|
||||
|
@ -26,8 +26,8 @@
|
||||
#error "Must define USE_OPENSSL"
|
||||
#endif
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <stddef.h> /* size_t */
|
||||
#include <stdint.h>
|
||||
|
||||
#include <haproxy/buf-t.h>
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
#error "Must define USE_OPENSSL"
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#include <haproxy/buf.h>
|
||||
#include <haproxy/chunk.h>
|
||||
|
@ -26,7 +26,7 @@
|
||||
#error "Must define USE_OPENSSL"
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#include <inttypes.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <haproxy/list.h>
|
||||
|
@ -26,7 +26,7 @@
|
||||
#error "Must define USE_OPENSSL"
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
/* Maximum reordering in packets. */
|
||||
#define QUIC_LOSS_PACKET_THRESHOLD 3
|
||||
|
@ -5,7 +5,7 @@
|
||||
#error "Must define USE_OPENSSL"
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#define QUIC_STATELESS_RESET_TOKEN_LEN 16
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
#error "Must define USE_OPENSSL"
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#include <import/eb64tree.h>
|
||||
#include <import/ebmbtree.h>
|
||||
|
Loading…
Reference in New Issue
Block a user