aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/ussd.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-10-16 08:32:58 +0200
committerHarald Welte <laforge@gnumonks.org>2009-10-26 20:39:25 +0100
commit6eafe9137ca345078531fc607a461f397faa505b (patch)
tree0d923eca102bd5bdffa9d8c78ddb9c21398374cf /openbsc/include/openbsc/ussd.h
parent143f1f56d94804fdfdd3302aa65cdc14f0b955e9 (diff)
Add USDD code from Mike Haben
This is the initial checkin of the USSD code from Mike Haben. I didn't put it in the main branch as I think it still needs some cleanup.
Diffstat (limited to 'openbsc/include/openbsc/ussd.h')
-rw-r--r--openbsc/include/openbsc/ussd.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/ussd.h b/openbsc/include/openbsc/ussd.h
new file mode 100644
index 000000000..e7bd6d69d
--- /dev/null
+++ b/openbsc/include/openbsc/ussd.h
@@ -0,0 +1,10 @@
+#ifndef _USSD_H
+#define _USSD_H
+
+/* Handler function for mobile-originated USSD messages */
+
+#include <openbsc/msgb.h>
+
+int handle_rcv_ussd(struct msgb *msg);
+
+#endif