tls: revert accidental API change

socket.authorizationError should always be string. Also make sni test
pass.
This commit is contained in:
Fedor Indutny 2012-07-20 21:10:23 +04:00
parent 0cf235410d
commit 93d496a4ec
2 changed files with 4 additions and 2 deletions

View File

@ -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();

View File

@ -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();