# HG changeset patch # User Matthew Wild # Date 1279998573 -3600 # Node ID 5f89e535765a6dd521d34fbd92617dfcd9f126a2 # Parent f7d2d78eb4242a61f1b7b4115ddfeb7778f7e824 context.c: Add no_compression option for when supported diff -r f7d2d78eb424 -r 5f89e535765a src/context.c --- a/src/context.c Sat Jul 24 13:40:16 2010 +0100 +++ b/src/context.c Sat Jul 24 20:09:33 2010 +0100 @@ -56,6 +56,9 @@ #if defined(SSL_OP_NO_TICKET) {"no_ticket", SSL_OP_NO_TICKET}, #endif +#if defined(SSL_OP_NO_COMPRESSION) + {"no_compression", SSL_OP_NO_COMPRESSION}, +#endif {NULL, 0L} };