aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2012-08-15 21:18:42 +0200
committerPablo Neira Ayuso <pablo@gnumonks.org>2012-08-15 23:34:38 +0200
commitc12d9d97e469b7e84ba4809b7f2e9022d82fe2cd (patch)
treebc8f0c2a4997bce538af9dff3d10936604bbc9da /include/osmocom
parentcee5fb36dab5741c2f2a5b5952e734bac6621c8f (diff)
channel: abis-ipa: shorter function names
%s/_server_/_srv_/g %s/osmo_chan_abis/osmo_abis/g %s/SERVER/SRV/g
Diffstat (limited to 'include/osmocom')
-rw-r--r--include/osmocom/netif/channel.h2
-rw-r--r--include/osmocom/netif/channel/abis_ipa_server.h12
2 files changed, 7 insertions, 7 deletions
diff --git a/include/osmocom/netif/channel.h b/include/osmocom/netif/channel.h
index 65955e8..e372e14 100644
--- a/include/osmocom/netif/channel.h
+++ b/include/osmocom/netif/channel.h
@@ -8,7 +8,7 @@
enum {
CHAN_NONE,
- CHAN_ABIS_IPA_SERVER,
+ CHAN_ABIS_IPA_SRV,
CHAN_MAX,
};
diff --git a/include/osmocom/netif/channel/abis_ipa_server.h b/include/osmocom/netif/channel/abis_ipa_server.h
index 0338021..6518f99 100644
--- a/include/osmocom/netif/channel/abis_ipa_server.h
+++ b/include/osmocom/netif/channel/abis_ipa_server.h
@@ -1,14 +1,14 @@
#ifndef _ABIS_IPA_SERVER_H_
#define _ABIS_IPA_SERVER_H_
-void osmo_chan_abis_ipa_server_set_oml_addr(struct osmo_chan *c, const char *addr);
-void osmo_chan_abis_ipa_server_set_oml_port(struct osmo_chan *c, uint16_t port);
+void osmo_abis_ipa_srv_set_oml_addr(struct osmo_chan *c, const char *addr);
+void osmo_abis_ipa_srv_set_oml_port(struct osmo_chan *c, uint16_t port);
-void osmo_chan_abis_ipa_server_set_rsl_addr(struct osmo_chan *c, const char *addr);
-void osmo_chan_abis_ipa_server_set_rsl_port(struct osmo_chan *c, uint16_t port);
+void osmo_abis_ipa_srv_set_rsl_addr(struct osmo_chan *c, const char *addr);
+void osmo_abis_ipa_srv_set_rsl_port(struct osmo_chan *c, uint16_t port);
-void osmo_chan_abis_ipa_server_set_cb_signalmsg(struct osmo_chan *c, void (*signal_msg)(struct msgb *msg, int type));
+void osmo_abis_ipa_srv_set_cb_signalmsg(struct osmo_chan *c, void (*signal_msg)(struct msgb *msg, int type));
-int osmo_chan_abis_ipa_unit_add(struct osmo_chan *c, uint16_t site_id, uint16_t bts_id);
+int osmo_abis_ipa_unit_add(struct osmo_chan *c, uint16_t site_id, uint16_t bts_id);
#endif