summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom/bb/modem/gmm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/host/layer23/include/osmocom/bb/modem/gmm.h')
-rw-r--r--src/host/layer23/include/osmocom/bb/modem/gmm.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/host/layer23/include/osmocom/bb/modem/gmm.h b/src/host/layer23/include/osmocom/bb/modem/gmm.h
new file mode 100644
index 00000000..41e1e7e6
--- /dev/null
+++ b/src/host/layer23/include/osmocom/bb/modem/gmm.h
@@ -0,0 +1,13 @@
+#pragma once
+
+#include <stdbool.h>
+#include <stdint.h>
+
+struct osmocom_ms;
+
+int modem_gmm_init(struct osmocom_ms *ms);
+
+int modem_gmm_gmmreg_attach_req(const struct osmocom_ms *ms);
+int modem_gmm_gmmreg_detach_req(const struct osmocom_ms *ms);
+int modem_gmm_gmmreg_sim_auth_rsp(const struct osmocom_ms *ms,
+ uint8_t *sres, uint8_t *kc, uint8_t kc_len);