Skip to content

Commit e2d9018

Browse files
postwaitry
authored andcommitted
SSL_OP_CRYPTOPRO_TLSEXT_BUG
fixes nodejs#873
1 parent d6f5b8a commit e2d9018

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/node_constants.cc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -908,6 +908,10 @@ void DefineConstants(Handle<Object> target) {
908908
#ifdef SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG
909909
NODE_DEFINE_CONSTANT(target, SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG);
910910
#endif
911+
912+
#ifdef SSL_OP_CRYPTOPRO_TLSEXT_BUG
913+
NODE_DEFINE_CONSTANT(target, SSL_OP_CRYPTOPRO_TLSEXT_BUG);
914+
#endif
911915
}
912916

913917
} // namespace node

0 commit comments

Comments
 (0)