move pfcp_tool.h to include/osmocom/pfcptool/

Related: SYS#6590
Change-Id: If3e7cc4df3defd08df9e75965715a1be0388ed01
This commit is contained in:
Neels Janosch Hofmeyr
2024-07-31 06:21:48 +02:00
parent f31d604eb9
commit c7119ea26c
8 changed files with 8 additions and 7 deletions

View File

@@ -198,6 +198,7 @@ AC_OUTPUT(
include/Makefile
include/osmocom/Makefile
include/osmocom/upf/Makefile
include/osmocom/pfcptool/Makefile
src/Makefile
src/osmo-upf/Makefile
src/osmo-pfcp-tool/Makefile

View File

@@ -1,3 +1,4 @@
SUBDIRS = \
upf \
pfcptool \
$(NULL)

View File

@@ -0,0 +1,3 @@
noinst_HEADERS = \
pfcp_tool.h \
$(NULL)

View File

@@ -22,10 +22,6 @@ AM_LDFLAGS = \
$(COVERAGE_LDFLAGS) \
$(NULL)
noinst_HEADERS = \
pfcp_tool.h \
$(NULL)
bin_PROGRAMS = \
osmo-pfcp-tool \
$(NULL)

View File

@@ -42,7 +42,7 @@
#include <osmocom/pfcp/pfcp_endpoint.h>
#include "pfcp_tool.h"
#include <osmocom/pfcptool/pfcp_tool.h>
#define _GNU_SOURCE
#include <getopt.h>

View File

@@ -26,7 +26,7 @@
#include <osmocom/pfcp/pfcp_endpoint.h>
#include "pfcp_tool.h"
#include <osmocom/pfcptool/pfcp_tool.h>
struct g_pfcp_tool *g_pfcp_tool = NULL;

View File

@@ -34,7 +34,7 @@
#include <osmocom/vty/vty.h>
#include <osmocom/vty/command.h>
#include "pfcp_tool.h"
#include <osmocom/pfcptool/pfcp_tool.h>
enum pfcp_tool_vty_node {
PEER_NODE = _LAST_OSMOVTY_NODE + 1,