nsiproxy: Include netinet/in.h in udp.c.

This is necessary to define struct in_addr which is used by
netinet/ip.h on FreeBSD.

Signed-off-by: Gerald Pfeifer <gerald@pfeifer.com>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Gerald Pfeifer 2021-08-20 16:11:52 +02:00 committed by Alexandre Julliard
parent 7d60044e18
commit f153ce2dab
1 changed files with 4 additions and 0 deletions

View File

@ -38,6 +38,10 @@
#include <sys/socketvar.h>
#endif
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IP_H
#include <netinet/ip.h>
#endif