mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-20 00:10:41 -05:00
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:
parent
46b1fec0e9
commit
4316ef2eab
1 changed files with 1 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
|||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#include <netinet/in.h>
|
||||
#include <netinet/udp.h>
|
||||
|
||||
#include <haproxy/acl.h>
|
||||
|
|
|
|||
Loading…
Reference in a new issue