diff options
-rw-r--r-- | src/vppinfra/socket.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vppinfra/socket.h b/src/vppinfra/socket.h index 13e09e66a91..c4f0b87e3e1 100644 --- a/src/vppinfra/socket.h +++ b/src/vppinfra/socket.h @@ -41,6 +41,10 @@ #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> +#ifdef __FreeBSD__ +#include <errno.h> +#define EBADFD EBADF +#endif /* __FreeBSD__ */ #include <vppinfra/clib.h> #include <vppinfra/error.h> |