aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2012-08-18 23:52:55 +0200
committerPablo Neira Ayuso <pablo@gnumonks.org>2012-08-18 23:52:55 +0200
commit487734e6d362dc51fbb57e50ce8d06e6c3ee7a3e (patch)
tree8a0d32829629b7548ab4c9462d73a61f502307b0 /include
parent1584058c8e365349dade58a0690442f4645a1b9b (diff)
channel: abis-ipa-client: add missing header file
I forgot to commit this file: osmocom/netif/channel/abis_ipa_client.h
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/netif/channel/abis_ipa_client.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/osmocom/netif/channel/abis_ipa_client.h b/include/osmocom/netif/channel/abis_ipa_client.h
new file mode 100644
index 0000000..5790ecf
--- /dev/null
+++ b/include/osmocom/netif/channel/abis_ipa_client.h
@@ -0,0 +1,13 @@
+#ifndef _OSMO_ABIS_IPA_CLIENT_H_
+#define _OSMO_ABIS_IPA_CLIENT_H_
+
+struct ipaccess_unit;
+
+void osmo_abis_ipa_cli_set_oml_addr(struct osmo_chan *c, const char *addr);
+void osmo_abis_ipa_cli_set_oml_port(struct osmo_chan *c, uint16_t port);
+void osmo_abis_ipa_cli_set_rsl_addr(struct osmo_chan *c, const char *addr);
+void osmo_abis_ipa_cli_set_rsl_port(struct osmo_chan *c, uint16_t port);
+void osmo_abis_ipa_cli_set_unit(struct osmo_chan *c, struct ipaccess_unit *unit);
+void osmo_abis_ipa_cli_set_cb_signalmsg(struct osmo_chan *c, void (*signal_msg)(struct msgb *msg, int type));
+
+#endif /* _OSMO_ABIS_IPA_CLIENT_H_ */