Compare commits

...

2 Commits

Author SHA1 Message Date
Meghan Denny
3cca3b94e9 Merge branch 'main' into nektro-patch-14 2025-11-28 14:58:11 -08:00
Meghan Denny
e3908ce3fa tls_socket_functions.zig: fix typo 2025-06-18 19:39:15 -07:00

View File

@@ -551,7 +551,7 @@ pub fn setVerifyMode(this: *This, globalObject: *jsc.JSGlobalObject, callframe:
}
const request_cert = request_cert_js.toBoolean();
const reject_unauthorized = request_cert_js.toBoolean();
const reject_unauthorized = reject_unauthorized_js.toBoolean();
var verify_mode: c_int = BoringSSL.SSL_VERIFY_NONE;
if (this.isServer()) {
if (request_cert) {