From e2d90185351b1d1b93f33f71cff10cc7040f708b Mon Sep 17 00:00:00 2001 From: Theo Schlossnagle Date: Tue, 5 Apr 2011 20:38:23 -0400 Subject: [PATCH] SSL_OP_CRYPTOPRO_TLSEXT_BUG fixes #873 --- src/node_constants.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/node_constants.cc b/src/node_constants.cc index a173d9fcd9..5cad3c3402 100644 --- a/src/node_constants.cc +++ b/src/node_constants.cc @@ -908,6 +908,10 @@ void DefineConstants(Handle target) { #ifdef SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG NODE_DEFINE_CONSTANT(target, SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG); #endif + +#ifdef SSL_OP_CRYPTOPRO_TLSEXT_BUG + NODE_DEFINE_CONSTANT(target, SSL_OP_CRYPTOPRO_TLSEXT_BUG); +#endif } } // namespace node