aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/ctrl
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2014-08-21 15:20:00 +0200
committerHarald Welte <laforge@gnumonks.org>2014-08-21 15:34:19 +0200
commitae2fcb22cfa81fe3934d4adaac68887001ab3a91 (patch)
tree719681047205f371cd016f8b5c65f9f039196ff6 /include/osmocom/ctrl
parentlibctrl: Make two internal helper functions static (diff)
downloadlibosmocore-ae2fcb22cfa81fe3934d4adaac68887001ab3a91.tar.xz
libosmocore-ae2fcb22cfa81fe3934d4adaac68887001ab3a91.zip
rename controlif_setup() to ctrl_interface_setup()
which means that all control interface related functions now have the common ctrl_ prefix.
Diffstat (limited to 'include/osmocom/ctrl')
-rw-r--r--include/osmocom/ctrl/control_if.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osmocom/ctrl/control_if.h b/include/osmocom/ctrl/control_if.h
index 5e10a039..3ac8bb6c 100644
--- a/include/osmocom/ctrl/control_if.h
+++ b/include/osmocom/ctrl/control_if.h
@@ -21,8 +21,8 @@ struct ctrl_handle {
int ctrl_cmd_send(struct osmo_wqueue *queue, struct ctrl_cmd *cmd);
-struct ctrl_handle *controlif_setup(void *data, uint16_t port,
- ctrl_cmd_lookup lookup);
+struct ctrl_handle *ctrl_interface_setup(void *data, uint16_t port,
+ ctrl_cmd_lookup lookup);
int ctrl_cmd_handle(struct ctrl_handle *ctrl, struct ctrl_cmd *cmd, void *data);