Move network-operator status enum out of common.h

This commit is contained in:
Denis Kenzior 2009-08-17 15:32:34 -05:00
parent 00f606b3e8
commit 95573a4d8d
2 changed files with 8 additions and 8 deletions

View File

@ -19,14 +19,6 @@
*
*/
/* 27.007 Section 7.3 <stat> */
enum operator_status {
OPERATOR_STATUS_UNKNOWN = 0,
OPERATOR_STATUS_AVAILABLE = 1,
OPERATOR_STATUS_CURRENT = 2,
OPERATOR_STATUS_FORBIDDEN = 3
};
/* 27.007 Section 7.3 <AcT> */
enum access_technology {
ACCESS_TECHNOLOGY_GSM = 0,

View File

@ -50,6 +50,14 @@
/* How often we update the operator list, in seconds */
#define OPERATOR_LIST_UPDATE_TIME 300
/* 27.007 Section 7.3 <stat> */
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;