mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
tls: revert accidental API change
socket.authorizationError should always be string. Also make sni test pass.
This commit is contained in:
parent
0cf235410d
commit
93d496a4ec
@ -1089,7 +1089,7 @@ function Server(/* [options], listener */) {
|
||||
} else {
|
||||
var verifyError = pair.ssl.verifyError();
|
||||
if (verifyError) {
|
||||
pair.cleartext.authorizationError = verifyError;
|
||||
pair.cleartext.authorizationError = verifyError.message;
|
||||
|
||||
if (self.rejectUnauthorized) {
|
||||
socket.destroy();
|
||||
|
@ -94,7 +94,9 @@ server.listen(serverPort, startTest);
|
||||
function startTest() {
|
||||
function connectClient(options, callback) {
|
||||
var client = tls.connect(options, function() {
|
||||
clientResults.push(client.authorized);
|
||||
clientResults.push(
|
||||
client.authorizationError &&
|
||||
/Hostname\/IP doesn't/.test(client.authorizationError));
|
||||
client.destroy();
|
||||
|
||||
callback();
|
||||
|
Loading…
Reference in New Issue
Block a user