Lines Matching refs:rejectUnauthorized
664 const rejectUnauthorized = !!options.rejectUnauthorized;
667 this._rejectUnauthorized = rejectUnauthorized;
668 if (requestCert || rejectUnauthorized)
669 ssl.setVerifyMode(requestCert, rejectUnauthorized);
835 let rejectUnauthorized = !!this._rejectUnauthorized;
839 if (options.rejectUnauthorized !== undefined)
840 rejectUnauthorized = !!options.rejectUnauthorized;
843 rejectUnauthorized !== this._rejectUnauthorized) {
844 this._handle.setVerifyMode(requestCert, rejectUnauthorized);
846 this._rejectUnauthorized = rejectUnauthorized;
1075 rejectUnauthorized: this.rejectUnauthorized, property
1175 this.rejectUnauthorized = options.rejectUnauthorized !== false;
1384 this.rejectUnauthorized = options.rejectUnauthorized !== false;
1540 if (options.rejectUnauthorized !== false) {
1545 'authorizationError: %s', options.rejectUnauthorized,
1589 rejectUnauthorized: !allowUnauthorized, property
1614 rejectUnauthorized: options.rejectUnauthorized !== false, property
1629 options.rejectUnauthorized = options.rejectUnauthorized !== false;