mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-24 18:20:07 +01:00
* Replace all occurences of 'UMTS' with 'GSM'. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3161 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
63 lines
1.8 KiB
C
63 lines
1.8 KiB
C
/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */
|
|
|
|
#ifndef NM_SETTING_GSM_H
|
|
#define NM_SETTING_GSM_H
|
|
|
|
#include <nm-setting.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define NM_TYPE_SETTING_GSM (nm_setting_gsm_get_type ())
|
|
#define NM_SETTING_GSM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_SETTING_GSM, NMSettingGsm))
|
|
#define NM_SETTING_GSM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_SETTING_GSM, NMSettingGsmClass))
|
|
#define NM_IS_SETTING_GSM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_SETTING_GSM))
|
|
#define NM_IS_SETTING_GSM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), NM_TYPE_SETTING_GSM))
|
|
#define NM_SETTING_GSM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_SETTING_GSM, NMSettingGsmClass))
|
|
|
|
#define NM_SETTING_GSM_SETTING_NAME "gsm"
|
|
|
|
#define NM_SETTING_GSM_NUMBER "number"
|
|
#define NM_SETTING_GSM_USERNAME "username"
|
|
#define NM_SETTING_GSM_PASSWORD "password"
|
|
#define NM_SETTING_GSM_APN "apn"
|
|
#define NM_SETTING_GSM_NETWORK_ID "network-id"
|
|
#define NM_SETTING_GSM_NETWORK_TYPE "network-type"
|
|
#define NM_SETTING_GSM_BAND "band"
|
|
#define NM_SETTING_GSM_PIN "pin"
|
|
#define NM_SETTING_GSM_PUK "puk"
|
|
|
|
enum {
|
|
NM_GSM_NETWORK_ANY = -1,
|
|
NM_GSM_NETWORK_GPRS = 0,
|
|
NM_GSM_NETWORK_GSM = 1,
|
|
NM_GSM_NETWORK_PREFER_GPRS = 2,
|
|
NM_GSM_NETWORK_PREFER_GSM = 3,
|
|
};
|
|
|
|
typedef struct {
|
|
NMSetting parent;
|
|
|
|
char *number; /* For dialing, duh */
|
|
char *username;
|
|
char *password;
|
|
|
|
char *apn; /* NULL for dynamic */
|
|
char *network_id; /* for manual registration or NULL for automatic */
|
|
int network_type; /* One of the NM_GSM_NETWORK_* */
|
|
int band;
|
|
|
|
char *pin;
|
|
char *puk;
|
|
} NMSettingGsm;
|
|
|
|
typedef struct {
|
|
NMSettingClass parent;
|
|
} NMSettingGsmClass;
|
|
|
|
GType nm_setting_gsm_get_type (void);
|
|
|
|
NMSetting *nm_setting_gsm_new (void);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* NM_SETTING_GSM_H */
|