diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-12-24 12:59:30 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2013-01-12 11:54:32 +0100 |
commit | 365d9a6f67739bdc4c43130eec362ad97414762c (patch) | |
tree | 9faac7cbec5fe27d69f3665a7637de4444c87a1e /src/starter/starterstroke.c | |
parent | 97973f860924e4472be9c842c34843cd95680642 (diff) | |
download | strongswan-365d9a6f67739bdc4c43130eec362ad97414762c.tar.bz2 strongswan-365d9a6f67739bdc4c43130eec362ad97414762c.tar.xz |
Added an option that allows to force IKEv1 fragmentation
Diffstat (limited to 'src/starter/starterstroke.c')
-rw-r--r-- | src/starter/starterstroke.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/starter/starterstroke.c b/src/starter/starterstroke.c index 41288531d..4f9e8fb14 100644 --- a/src/starter/starterstroke.c +++ b/src/starter/starterstroke.c @@ -180,7 +180,7 @@ int starter_stroke_add_conn(starter_config_t *cfg, starter_conn_t *conn) } msg.add_conn.mobike = conn->options & SA_OPTION_MOBIKE; msg.add_conn.force_encap = conn->options & SA_OPTION_FORCE_ENCAP; - msg.add_conn.fragmentation = conn->options & SA_OPTION_FRAGMENTATION; + msg.add_conn.fragmentation = conn->fragmentation; msg.add_conn.ipcomp = conn->options & SA_OPTION_COMPRESS; msg.add_conn.install_policy = conn->install_policy; msg.add_conn.aggressive = conn->aggressive; |