diff options
author | Joan Lledó <joanlluislledo@gmail.com> | 2018-04-30 12:43:24 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-05-01 01:35:15 +0200 |
commit | 17f0895b4889e343835fd6bee9be8cbdcdef5a5d (patch) | |
tree | d295be60bb49131bb06d0603f23cc0f5ad91f20b /lwip | |
parent | 05403a6e3a72c085e25b46c3173efde4cf64c21f (diff) | |
download | hurd-17f0895b4889e343835fd6bee9be8cbdcdef5a5d.tar.gz hurd-17f0895b4889e343835fd6bee9be8cbdcdef5a5d.tar.bz2 hurd-17f0895b4889e343835fd6bee9be8cbdcdef5a5d.zip |
Include required sockets headers
* lwip/iioctl-ops.c: Include <lwip/inet.h>.
* lwip/lwip-util.c: Likewise.
* lwip/pfinet-ops.c: Include <lwip/sockets.h> and <lwip/inet.h>.
* lwip/port/netif/hurdethif.c: Likewise.
Diffstat (limited to 'lwip')
-rw-r--r-- | lwip/iioctl-ops.c | 1 | ||||
-rw-r--r-- | lwip/lwip-util.c | 1 | ||||
-rw-r--r-- | lwip/pfinet-ops.c | 2 | ||||
-rw-r--r-- | lwip/port/netif/hurdethif.c | 2 |
4 files changed, 6 insertions, 0 deletions
diff --git a/lwip/iioctl-ops.c b/lwip/iioctl-ops.c index fcb7e872..6d3b6cb9 100644 --- a/lwip/iioctl-ops.c +++ b/lwip/iioctl-ops.c @@ -23,6 +23,7 @@ #include <lwip_iioctl_S.h> #include <lwip/sockets.h> +#include <lwip/inet.h> #include <device/device.h> #include <device/net_status.h> diff --git a/lwip/lwip-util.c b/lwip/lwip-util.c index c65b093b..57a94d52 100644 --- a/lwip/lwip-util.c +++ b/lwip/lwip-util.c @@ -26,6 +26,7 @@ #include <net/if_arp.h> #include <lwip/sockets.h> +#include <lwip/inet.h> #include <lwip/netifapi.h> #include <lwip-hurd.h> diff --git a/lwip/pfinet-ops.c b/lwip/pfinet-ops.c index 96d2d12b..56b7dcd1 100644 --- a/lwip/pfinet-ops.c +++ b/lwip/pfinet-ops.c @@ -26,6 +26,8 @@ #include <sys/ioctl.h> #include <net/if.h> #include <lwip/netif.h> +#include <lwip/sockets.h> +#include <lwip/inet.h> #include <sys/mman.h> #include <lwip-util.h> diff --git a/lwip/port/netif/hurdethif.c b/lwip/port/netif/hurdethif.c index bcf2e4dd..4b088344 100644 --- a/lwip/port/netif/hurdethif.c +++ b/lwip/port/netif/hurdethif.c @@ -43,6 +43,8 @@ #include <lwip/snmp.h> #include <lwip/ethip6.h> #include <lwip/etharp.h> +#include <lwip/sockets.h> +#include <lwip/inet.h> /* Get the MAC address from an array of int */ #define GET_HWADDR_BYTE(x,n) (((char*)x)[n]) |