context.c: Add no_compression option for when supported

Sat, 24 Jul 2010 20:09:33 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Sat, 24 Jul 2010 20:09:33 +0100
changeset 1
5f89e535765a
parent 0
f7d2d78eb424
child 2
0cfca30f1ce3

context.c: Add no_compression option for when supported

src/context.c file | annotate | diff | comparison | revisions
--- 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}
 };
 

mercurial