This project is mirrored from https://github.com/nhooyr/websocket.
Pull mirroring updated .
- Aug 15, 2024
-
-
Mathias Fredriksson authored
-
Mathias Fredriksson authored
Fixes #455
-
Mathias Fredriksson authored
Revert "Split coverage and deploy jobs in static.yml to avoid env issue"
-
Mathias Fredriksson authored
This reverts commit 0f14077d.
-
Mathias Fredriksson authored
Clean out env passed to wasmbrowsertest in TestWasm
-
Mathias Fredriksson authored
-
Mathias Fredriksson authored
Split coverage and deploy jobs in static.yml to avoid env issue
-
Mathias Fredriksson authored
-
Mathias Fredriksson authored
Add setup-go to static.yml
-
Mathias Fredriksson authored
-
Mathias Fredriksson authored
Fix coverage
-
Mathias Fredriksson authored
-
- Aug 09, 2024
-
-
Ammar Bandukwala authored
Add transfer notice to README
-
Ammar Bandukwala authored
-
Ammar Bandukwala authored
Update import path to github.com/coder/websocket
-
Ammar Bandukwala authored
vulncheck was using slices which is only in newer Go versions.
-
Ammar Bandukwala authored
This will create easily solved breakage on updates but I figure it's best to pull the band aid off as early as possible
-
- Apr 07, 2024
-
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Quinn Rivenwell authored
fix closenow race
-
Anmol Sethi authored
Context can be cancelled by parent. Doesn't indicate the CloseRead goroutine has exited.
-
Anmol Sethi authored
-
Anmol Sethi authored
See #326
-
Anmol Sethi authored
-
Anmol Sethi authored
-
- Apr 05, 2024
-
-
Anmol Sethi authored
Far simpler now. Sorry this took a while. Closes #427 Closes #429 Closes #434 Closes #436 Closes #437
-
Anmol Sethi authored
Not ideal but whatever, I'm going to rewrite all of this anyway.
-
Alexander Wang authored
-
- Mar 07, 2024
-
-
Anmol Sethi authored
Fix unaligned load error on 32-bit architectures Closes #432
-
Anmol Sethi authored
-
- Mar 05, 2024
-
-
Anmol Sethi authored
-
- Feb 26, 2024
-
-
Grigorii Khvatskii authored
On some 32-bit architectures, 64-bit atomic operations panic when the value is not aligned properly. In this package, this causes netConn operations to panic when compiling with GOARCH=386, since netConn does atomic operations with int64 values in the netConn struct (namely, with readExpired and writeExpired). This commit fixes this by moving readExpired and writeExpired to the beginning of the struct, which makes them properly aligned.
-
- Feb 22, 2024
-
-
Quinn Rivenwell authored
use simd masking for amd64&arm64
-
Anmol Sethi authored
-
-
Anmol Sethi authored
Standard library does this too. Unfortunate wish they just exposed it in the standard library. Perhaps we can isolate the specific code we need later.
-
Anmol Sethi authored
-
Anmol Sethi authored
I'm just not good enough at assembly. I added tests to confirm that @wdvxdr's implementation works correctly and matches the output of the basic masking loop.
-
Anmol Sethi authored
-