diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-05-03 10:20:54 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-05-03 10:20:54 +0200 |
commit | 240d3a0cbdc46e4ed08d1015a2d4f1ca52bbdd55 (patch) | |
tree | 638fc6d01acc724a90a25eb3e069eef826919ee7 /openvpn/src/openvpn/options.h | |
parent | 0106121c24783a83ec4c816e660abed212c92fd9 (diff) |
Add snappy library. In preparation for upcoming snappy support of OpenVPN
Diffstat (limited to 'openvpn/src/openvpn/options.h')
-rw-r--r-- | openvpn/src/openvpn/options.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/openvpn/src/openvpn/options.h b/openvpn/src/openvpn/options.h index e5de2f10..56359357 100644 --- a/openvpn/src/openvpn/options.h +++ b/openvpn/src/openvpn/options.h @@ -39,7 +39,7 @@ #include "plugin.h" #include "manage.h" #include "proxy.h" -#include "lzo.h" +#include "comp.h" #include "pushlist.h" #include "clinat.h" @@ -316,9 +316,8 @@ struct options /* optimize TUN/TAP/UDP writes */ bool fast_io; -#ifdef ENABLE_LZO - /* LZO_x flags from lzo.h */ - unsigned int lzo; +#ifdef USE_COMP + struct compress_options comp; #endif /* buffer sizes */ |