diff options
Diffstat (limited to 'libnm-core/nm-setting-cdma.h')
| -rw-r--r-- | libnm-core/nm-setting-cdma.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libnm-core/nm-setting-cdma.h b/libnm-core/nm-setting-cdma.h index 091c530e..6e429bd1 100644 --- a/libnm-core/nm-setting-cdma.h +++ b/libnm-core/nm-setting-cdma.h @@ -27,7 +27,7 @@ #error "Only <NetworkManager.h> can be included directly." #endif -#include <nm-setting.h> +#include "nm-setting.h" G_BEGIN_DECLS @@ -44,9 +44,12 @@ G_BEGIN_DECLS #define NM_SETTING_CDMA_USERNAME "username" #define NM_SETTING_CDMA_PASSWORD "password" #define NM_SETTING_CDMA_PASSWORD_FLAGS "password-flags" +#define NM_SETTING_CDMA_MTU "mtu" /** * NMSettingCdma: + * + * CDMA-based Mobile Broadband Settings */ struct _NMSettingCdma { NMSetting parent; @@ -67,6 +70,9 @@ const char *nm_setting_cdma_get_username (NMSettingCdma *setting); const char *nm_setting_cdma_get_password (NMSettingCdma *setting); NMSettingSecretFlags nm_setting_cdma_get_password_flags (NMSettingCdma *setting); +NM_AVAILABLE_IN_1_8 +guint32 nm_setting_cdma_get_mtu (NMSettingCdma *setting); + G_END_DECLS #endif /* __NM_SETTING_CDMA_H__ */ |