diff options
author | 2023-07-17 23:39:09 -0300 | |
---|---|---|
committer | 2023-07-17 19:39:09 -0700 | |
commit | 13b54fbdb8cc36bbe027238654360f159ecaefbb (patch) | |
tree | 9f905b3520a01ba64cf10df0eefe2fe35c196648 /src/sync.zig | |
parent | 9273e29f0eba9c9d185a602d30def5a6b981ad55 (diff) | |
download | bun-13b54fbdb8cc36bbe027238654360f159ecaefbb.tar.gz bun-13b54fbdb8cc36bbe027238654360f159ecaefbb.tar.zst bun-13b54fbdb8cc36bbe027238654360f159ecaefbb.zip |
[tls] General compatibility improvements (#3596)
* wip
* subjectaltname
* more progress
* bindings
* fmt
* getCert/getPeerCertificate
* fix checkServerIdentity
* fix checkServerIdentity
* add a lot of TLSSocket functions
* getEphemeralKeyInfo fix and comment
* add alternative for getEphemeralKeyInfo
* add get session and set session
* fix isSessionReused
* get back the raw data for MSSQL
* fixeup
* fixup getSession + tests
* fix doc + fmt
* getFinished/getPeerFinished
* codegen
* fixup
* revert webkit
* more fixes
* ssl helper + revert test oops
* asserts
Diffstat (limited to 'src/sync.zig')
-rw-r--r-- | src/sync.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sync.zig b/src/sync.zig index 598831099..ca0818744 100644 --- a/src/sync.zig +++ b/src/sync.zig @@ -571,7 +571,7 @@ pub const RwLock = if (@import("builtin").os.tag != .windows and @import("builti } const PTHREAD_RWLOCK_INITIALIZER = pthread_rwlock_t{}; - const pthread_rwlock_t = switch (@import("builtin").os.tag) { + pub const pthread_rwlock_t = switch (@import("builtin").os.tag) { .macos, .ios, .watchos, .tvos => extern struct { __sig: c_long = 0x2DA8B3B4, __opaque: [192]u8 = [_]u8{0} ** 192, |