Lines Matching refs:rejectUnauthorized
810 const rejectUnauthorized = !!options.rejectUnauthorized;
813 this._rejectUnauthorized = rejectUnauthorized;
814 if (requestCert || rejectUnauthorized)
815 ssl.setVerifyMode(requestCert, rejectUnauthorized);
967 let rejectUnauthorized = !!this._rejectUnauthorized;
971 if (options.rejectUnauthorized !== undefined)
972 rejectUnauthorized = !!options.rejectUnauthorized;
975 rejectUnauthorized !== this._rejectUnauthorized) {
976 this._handle.setVerifyMode(requestCert, rejectUnauthorized);
978 this._rejectUnauthorized = rejectUnauthorized;
1218 rejectUnauthorized: this.rejectUnauthorized,
1271 // rejectUnauthorized
1281 // - rejectUnauthorized. Boolean, default to true.
1319 this.rejectUnauthorized = options.rejectUnauthorized !== false;
1524 this.rejectUnauthorized = options.rejectUnauthorized !== false;
1676 // rejectUnauthorized property can be explicitly defined as `undefined`
1679 // and update rejectUnauthorized property. The property gets used by
1684 if (options.rejectUnauthorized !== false) {
1688 debug('client emit secureConnect. rejectUnauthorized: %s, ' +
1689 'authorizationError: %s', options.rejectUnauthorized,
1733 rejectUnauthorized: !allowUnauthorized,
1758 rejectUnauthorized: options.rejectUnauthorized !== false,
1769 // rejectUnauthorized property can be explicitly defined as `undefined`
1772 // and update rejectUnauthorized property. The property gets used by TLSSocket
1774 options.rejectUnauthorized = options.rejectUnauthorized !== false;