2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-30 05:47:45 +00:00

Define SHUT_RD if the O.S. headers don't.

This commit is contained in:
Ted Lemon 1999-12-19 23:41:04 +00:00
parent bbdb72a4d7
commit 06d048704c

View File

@ -227,6 +227,10 @@
# define BPF_FORMAT "/dev/bpf%d"
#endif
#if defined (F_SETFD) && !defined (HAVE_SETFD)
# define HAVE_SETFD
#endif
#if defined (IFF_POINTOPOINT) && !defined (HAVE_IFF_POINTOPOINT)
# define HAVE_IFF_POINTOPOINT
#endif
@ -279,4 +283,9 @@
# define HAVE_AF_LINK
#endif
/* Linux needs to define SHUT_* in /usr/include/sys/socket.h someday... */
#if !defined (SHUT_RD)
# define SHUT_RD 0
#endif
#endif /* __ISC_DHCP_OSDEP_H__ */