Skip to content

Commit

Permalink
Disable stateful compression by default
Browse files Browse the repository at this point in the history
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
  • Loading branch information
David Woodhouse authored and David Woodhouse committed Jan 25, 2015
1 parent cf3b148 commit 58a2bfe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion library.c
Expand Up @@ -72,7 +72,7 @@ struct openconnect_info *openconnect_vpninfo_new(const char *useragent,
vpninfo->ssl_fd = vpninfo->dtls_fd = -1;
vpninfo->cmd_fd = vpninfo->cmd_fd_write = -1;
vpninfo->cert_expire_warning = 60 * 86400;
vpninfo->req_compr = COMPR_ALL;
vpninfo->req_compr = COMPR_STATELESS;
vpninfo->max_qlen = 10;
vpninfo->localname = strdup("localhost");
vpninfo->useragent = openconnect_create_useragent(useragent);
Expand Down
1 change: 1 addition & 0 deletions www/changelog.xml
Expand Up @@ -15,6 +15,7 @@
<ul>
<li><b>OpenConnect HEAD</b>
<ul>
<li>Change default behaviour to enable only stateless compression.</li>
<li>Add <tt>--compression</tt> argument and <tt>openconnect_set_compression_mode()</tt>.</li>
<li>Add support for LZS compression <i>(compatible with latest Cisco ASA and ocserv)</i>.</li>
<li>Add support for <a href="https://code.google.com/p/lz4/">LZ4</a> compression <i>(compatible with ocserv)</i>.</li>
Expand Down

0 comments on commit 58a2bfe

Please sign in to comment.