diff options
-rw-r--r-- | src/vpp/app/vpp_prometheus_export.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vpp/app/vpp_prometheus_export.c b/src/vpp/app/vpp_prometheus_export.c index 8246d8d1cc2..c6000a8a008 100644 --- a/src/vpp/app/vpp_prometheus_export.c +++ b/src/vpp/app/vpp_prometheus_export.c @@ -27,6 +27,11 @@ #include <errno.h> #include <unistd.h> #include <netdb.h> +#ifdef __FreeBSD__ +#include <sys/types.h> +#include <netinet/in.h> +#include <arpa/inet.h> +#endif /* __FreeBSD__ */ #include <sys/socket.h> #include <vpp-api/client/stat_client.h> #include <vlib/vlib.h> |