summaryrefslogtreecommitdiff
path: root/libnm-util/nm-setting-ppp.h
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2008-04-19 01:25:44 +0000
committerDan Williams <dcbw@redhat.com>2008-04-19 01:25:44 +0000
commitbab390a897a48e435288887638b63daeedeb948a (patch)
treec96a0ace74c39546890be103eeeb2e5be4f4ffd6 /libnm-util/nm-setting-ppp.h
parenta99508edb10729960846d0ad11339b95250c401c (diff)
downloadNetworkManager-bab390a897a48e435288887638b63daeedeb948a.tar.gz
2008-04-18 Dan Williams <dcbw@redhat.com>
* libnm-util/nm-setting-ppp.c libnm-util/nm-setting-ppp.h - Add 'no-vj-comp' option for TCP header compression - baud, mru, mtu, lcp_echo_failure, and lcp_echo_interval are really uint32 git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3578 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
Diffstat (limited to 'libnm-util/nm-setting-ppp.h')
-rw-r--r--libnm-util/nm-setting-ppp.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/libnm-util/nm-setting-ppp.h b/libnm-util/nm-setting-ppp.h
index c132b4eb01..3c5b1e8744 100644
--- a/libnm-util/nm-setting-ppp.h
+++ b/libnm-util/nm-setting-ppp.h
@@ -24,6 +24,7 @@ G_BEGIN_DECLS
#define NM_SETTING_PPP_REFUSE_MSCHAPV2 "refuse-mschapv2"
#define NM_SETTING_PPP_NOBSDCOMP "nobsdcomp"
#define NM_SETTING_PPP_NODEFLATE "nodeflate"
+#define NM_SETTING_PPP_NO_VJ_COMP "no-vj-comp"
#define NM_SETTING_PPP_REQUIRE_MPPE "require-mppe"
#define NM_SETTING_PPP_REQUIRE_MPPE_128 "require-mppe-128"
#define NM_SETTING_PPP_MPPE_STATEFUL "mpppe-stateful"
@@ -45,16 +46,17 @@ typedef struct {
gboolean refuse_mschapv2;
gboolean nobsdcomp;
gboolean nodeflate;
+ gboolean no_vj_comp;
gboolean require_mppe;
gboolean require_mppe_128;
gboolean mppe_stateful;
gboolean crtscts;
- gint32 baud;
- gint32 mru;
- gint32 mtu;
- gint32 lcp_echo_failure;
- gint32 lcp_echo_interval;
+ guint32 baud;
+ guint32 mru;
+ guint32 mtu;
+ guint32 lcp_echo_failure;
+ guint32 lcp_echo_interval;
} NMSettingPPP;
typedef struct {