Browse Source

SSL_OP_CRYPTOPRO_TLSEXT_BUG

fixes #873
v0.7.4-release
Theo Schlossnagle 14 years ago
committed by Ryan Dahl
parent
commit
e2d9018535
  1. 4
      src/node_constants.cc

4
src/node_constants.cc

@ -908,6 +908,10 @@ void DefineConstants(Handle<Object> 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

Loading…
Cancel
Save