BUILD: cfgparse-quic: fix build error on Solaris due to missing netinet/in.h

Since commit 35470d518 ("MINOR: quic: activate UDP GSO for QUIC if
supported"), Solaris build fails due to netinet/udp.h being included
without netinet/in.h. Adding it is sufficient to fix the problem. No
backport is needed.
This commit is contained in:
Willy Tarreau 2024-07-28 14:59:23 +02:00
parent 46b1fec0e9
commit 4316ef2eab

View File

@ -1,5 +1,6 @@
#include <errno.h>
#include <string.h>
#include <netinet/in.h>
#include <netinet/udp.h>
#include <haproxy/acl.h>