From 393bfa786c56d50f3452384dbb75c1c49df434e6 Mon Sep 17 00:00:00 2001 From: Tom Jones Date: Tue, 30 Jan 2024 09:47:05 +0000 Subject: [PATCH] vpp: Add platform specific headers for socket and inet Type: improvement Change-Id: Idcedc14089a49483d83c28a82ecb79d1b856f225 Signed-off-by: Tom Jones --- src/vat/json_format.h | 5 +++++ src/vpp/api/json_format.h | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/src/vat/json_format.h b/src/vat/json_format.h index 71db79eacf5..77128621d21 100644 --- a/src/vat/json_format.h +++ b/src/vat/json_format.h @@ -22,6 +22,11 @@ #include #include +#ifdef __FreeBSD__ +#include +#include +#include +#endif /* __FreeBSD__ */ #include /* JSON value type */ diff --git a/src/vpp/api/json_format.h b/src/vpp/api/json_format.h index 63217979ccd..3cfb87032e0 100644 --- a/src/vpp/api/json_format.h +++ b/src/vpp/api/json_format.h @@ -22,6 +22,11 @@ #include #include +#ifdef __FreeBSD__ +#include +#include +#include +#endif /* __FreeBSD__ */ #include /* JSON value type */ -- 2.16.6