diff --git a/src/common.h b/src/common.h index 0df44e0b..c1db5b31 100644 --- a/src/common.h +++ b/src/common.h @@ -19,14 +19,6 @@ * */ -/* 27.007 Section 7.3 */ -enum operator_status { - OPERATOR_STATUS_UNKNOWN = 0, - OPERATOR_STATUS_AVAILABLE = 1, - OPERATOR_STATUS_CURRENT = 2, - OPERATOR_STATUS_FORBIDDEN = 3 -}; - /* 27.007 Section 7.3 */ enum access_technology { ACCESS_TECHNOLOGY_GSM = 0, diff --git a/src/network.c b/src/network.c index 12d6f6ef..1f9a2fcd 100644 --- a/src/network.c +++ b/src/network.c @@ -50,6 +50,14 @@ /* How often we update the operator list, in seconds */ #define OPERATOR_LIST_UPDATE_TIME 300 +/* 27.007 Section 7.3 */ +enum operator_status { + OPERATOR_STATUS_UNKNOWN = 0, + OPERATOR_STATUS_AVAILABLE = 1, + OPERATOR_STATUS_CURRENT = 2, + OPERATOR_STATUS_FORBIDDEN = 3 +}; + struct network_registration_data { int status; int location;