summaryrefslogtreecommitdiffstats
path: root/src/ctrl
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-05-26 17:07:39 +0200
committerHarald Welte <laforge@gnumonks.org>2018-05-26 21:58:11 +0200
commited6057841dd094f95efebbeae51a85bd0879463f (patch)
tree42746681b44acc6f13e53f2e6849a911dd01a6f0 /src/ctrl
parent3b8921fae2754c02a47f29238490d4ed2836353d (diff)
ctrl: Introduce libosmoctrl.map to avoid unintended exports
There are some symbols for use between control_cmd.c and control_if.c, which are not supposed to be exported publicly. Let's make sure we keep those symbols local. Change-Id: Ia85f36a9c4b2ebf4003718e0a230959638370320
Diffstat (limited to 'src/ctrl')
-rw-r--r--src/ctrl/Makefile.am2
-rw-r--r--src/ctrl/libosmoctrl.map34
2 files changed, 36 insertions, 0 deletions
diff --git a/src/ctrl/Makefile.am b/src/ctrl/Makefile.am
index 71cc9a37..a51ae053 100644
--- a/src/ctrl/Makefile.am
+++ b/src/ctrl/Makefile.am
@@ -20,4 +20,6 @@ if ENABLE_VTY
libosmoctrl_la_SOURCES += control_vty.c
endif
+EXTRA_DIST = libosmoctrl.map
+
endif
diff --git a/src/ctrl/libosmoctrl.map b/src/ctrl/libosmoctrl.map
new file mode 100644
index 00000000..5b888a2d
--- /dev/null
+++ b/src/ctrl/libosmoctrl.map
@@ -0,0 +1,34 @@
+LIBOSMOCTRL_1.0 {
+global:
+
+ctrl_cmd_cpy;
+ctrl_cmd_create;
+ctrl_cmd_def_is_zombie;
+ctrl_cmd_def_make;
+ctrl_cmd_def_send;
+#ctrl_cmd_exec;
+ctrl_cmd_exec_from_string;
+ctrl_cmd_handle;
+ctrl_cmd_install;
+ctrl_cmd_make;
+ctrl_cmd_parse;
+ctrl_cmd_parse2;
+ctrl_cmd_send;
+ctrl_cmd_send_to_all;
+ctrl_cmd_send_trap;
+ctrl_cmd_trap;
+ctrl_handle_alloc; /* could be removed? */
+ctrl_handle_alloc2; /* could be removed? */
+ctrl_handle_msg; /* only used in unit test */
+ctrl_interface_setup;
+ctrl_interface_setup_dynip;
+ctrl_interface_setup_dynip2;
+ctrl_lookup_register;
+ctrl_parse_get_num;
+ctrl_type_vals;
+ctrl_vty_get_bind_addr;
+ctrl_vty_init;
+osmo_ctrl_conn_alloc;
+
+local: *;
+};