diff options
| author | Michael Biebl <biebl@debian.org> | 2017-05-11 14:55:55 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2017-05-11 14:55:55 +0200 |
| commit | c333f062ddcba9b35330647bf6cbd0a07f2d786e (patch) | |
| tree | 257c3a0c74c09f4ad2328eab5b932806405f0c1c /libnm-core/nm-setting-cdma.h | |
| parent | a222e56e103f949b148a6942e385ccca2c26d9f3 (diff) | |
New upstream version 1.8.0 upstream/1.8.0
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__ */ |