From b08c787fe267053afdea82701071f3878c09244b Mon Sep 17 00:00:00 2001 From: Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> Date: Thu, 9 Nov 2023 10:50:59 +0100 Subject: Have a clear distinction between public and private/internal API (#2137) 1) Public API/headers in `src/include/` [as it has always been] 2) Private API/headers in `src/lib/` Try to keep the "ndpi_" prefix only for the public functions --- src/lib/protocols/ntp.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/lib/protocols/ntp.c') diff --git a/src/lib/protocols/ntp.c b/src/lib/protocols/ntp.c index 7737bfa0e..8e08b391a 100644 --- a/src/lib/protocols/ntp.c +++ b/src/lib/protocols/ntp.c @@ -27,6 +27,7 @@ #define NDPI_CURRENT_PROTO NDPI_PROTOCOL_NTP #include "ndpi_api.h" +#include "ndpi_private.h" static void ndpi_int_ntp_add_connection(struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow) -- cgit v1.2.3