aboutsummaryrefslogtreecommitdiffstats
path: root/include/openbsc/a_iface.h
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2017-06-12 12:52:35 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-07-12 23:42:46 +0200
commit09907d574548200adb9a46eb57f6f6a9b13355b7 (patch)
tree7abd48791552097884908a645f246a191fc84f83 /include/openbsc/a_iface.h
parent4b905cf141cd896edc605291c2a3e3abbd94a58b (diff)
cosmetic: more expressive function names in a_iface
The function names if the API function in a_iface.c are not very expressive. Besides of that, the prototypes are in the wrong header file. This commit gives the function more expressive names and moves the prototypes in the right header file. Change-Id: I6af4b7deed9d11ac5fe188eb5625fba50caad7c1
Diffstat (limited to 'include/openbsc/a_iface.h')
-rw-r--r--include/openbsc/a_iface.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/openbsc/a_iface.h b/include/openbsc/a_iface.h
index d5c5f9efb..483ffa47f 100644
--- a/include/openbsc/a_iface.h
+++ b/include/openbsc/a_iface.h
@@ -22,4 +22,17 @@
int a_init(void *ctx, const char *name, uint32_t local_pc, const char *listen_addr,
const char *remote_addr, uint16_t local_port, struct gsm_network *network);
+/* Send DTAP message via A-interface */
+int a_iface_tx_dtap(struct msgb *msg);
+
+/* Send Cipher mode command via A-interface */
+int a_iface_tx_cipher_mode(struct gsm_subscriber_connection *conn,
+ int cipher, const uint8_t *key, int len, int include_imeisv);
+
+/* Page a subscriber via A-interface */
+int a_iface_tx_paging(const char *imsi, uint32_t tmsi, uint16_t lac);
+
+/* Send assignment request via A-interface */
+int a_iface_tx_assignment(struct gsm_trans *trans);
+
#pragma once