summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common.h9
-rw-r--r--src/ussd.c9
2 files changed, 9 insertions, 9 deletions
diff --git a/src/common.h b/src/common.h
index d5272f0a..eeaa951f 100644
--- a/src/common.h
+++ b/src/common.h
@@ -127,15 +127,6 @@ enum own_number_service_type {
OWN_NUMBER_SERVICE_TYPE_FAX = 5
};
-enum ussd_status {
- USSD_STATUS_NOTIFY = 0,
- USSD_STATUS_ACTION_REQUIRED = 1,
- USSD_STATUS_TERMINATED = 2,
- USSD_STATUS_LOCAL_CLIENT_RESPONDED = 3,
- USSD_STATUS_NOT_SUPPORTED = 4,
- USSD_STATUS_TIMED_OUT = 5,
-};
-
/* 22.030 Section 6.5.2 */
enum ss_control_type {
SS_CONTROL_TYPE_ACTIVATION,
diff --git a/src/ussd.c b/src/ussd.c
index d4f2f547..3d7ac4a9 100644
--- a/src/ussd.c
+++ b/src/ussd.c
@@ -41,6 +41,15 @@
static GSList *g_drivers = NULL;
+enum ussd_status {
+ USSD_STATUS_NOTIFY = 0,
+ USSD_STATUS_ACTION_REQUIRED = 1,
+ USSD_STATUS_TERMINATED = 2,
+ USSD_STATUS_LOCAL_CLIENT_RESPONDED = 3,
+ USSD_STATUS_NOT_SUPPORTED = 4,
+ USSD_STATUS_TIMED_OUT = 5,
+};
+
enum ussd_state {
USSD_STATE_IDLE = 0,
USSD_STATE_ACTIVE = 1,