projects
/
platform
/
upstream
/
nodejs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d6f5b8a
)
SSL_OP_CRYPTOPRO_TLSEXT_BUG
author
Theo Schlossnagle
<jesus@omniti.com>
Wed, 6 Apr 2011 00:38:23 +0000
(20:38 -0400)
committer
Ryan Dahl
<ry@tinyclouds.org>
Thu, 14 Apr 2011 01:35:56 +0000
(18:35 -0700)
fixes #873
src/node_constants.cc
patch
|
blob
|
history
diff --git
a/src/node_constants.cc
b/src/node_constants.cc
index a173d9fcd91658ceace66a985ca9fc640a27ee6f..5cad3c34028ba25587cc984093d65c68ad4964f6 100644
(file)
--- a/
src/node_constants.cc
+++ b/
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