This project is mirrored from https://github.com/nhooyr/websocket.
Pull mirroring updated .
- Aug 09, 2024
-
-
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 09, 2024
-
-
Jacob authored
This is a cleaner solution for the fix in #438 thanks to the fact that Go 1.19 now is the default and the atomic.Int64 types are automatically aligned correctly on 32 bit systems. Using this also means that xsync.Int64 can be removed. The new atomic.Int64 type solves the issue and should be quite a lot faster as it avoids the interface conversion.
-
- Apr 07, 2024
-
-
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
-
- Oct 25, 2023
-
-
Anmol Sethi authored
Whoops, updates #254 and closes #410
-
- Oct 20, 2023
-
-
Anmol Sethi authored
Whoops.
-
- Oct 19, 2023
-
-
Anmol Sethi authored
Closes #330
-
Anmol Sethi authored
Closes #330
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
Closes #400
-
- Oct 13, 2023
-
-
Andy Bursavich authored
-
Anmol Sethi authored
-
Anmol Sethi authored
Closes #349
-
Anmol Sethi authored
-
- May 18, 2020
-
-
Anmol Sethi authored
NetConn has to close the connection to interrupt in progress reads and writes. However, it can block reads and writes that occur after the deadline instead of closing the connection. Closes #228
-
Anmol Sethi authored
This way we don't pollute the directory tree.
-
- Apr 14, 2020
-
-
Anmol Sethi authored
Updates #209
-
Anmol Sethi authored
-
- Feb 27, 2020
-
-
Anmol Sethi authored
Closes #199
-
- Feb 16, 2020
-
-
Anmol Sethi authored
- Feb 12, 2020
-
-
Anmol Sethi authored
-
- Feb 09, 2020
-
-
Anmol Sethi authored
-
Anmol Sethi authored
Closes #182
-
Anmol Sethi authored
-
- Nov 29, 2019
-
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
Too many improvements and changes to list. Will include a detailed changelog for release.
-
Anmol Sethi authored
-
- Oct 11, 2019
-
-
Anmol Sethi authored
- For JS we ensure we indicate which size initiated the close first from our POV - For normal Go, concurrent closes block until the first one succeeds instead of returning early
-
- Oct 10, 2019
-
-
Anmol Sethi authored
-
- Oct 09, 2019
-
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
I changed my mind after #103 as browsers include a wasClean event to indicate whether the connection was closed cleanly. From my tests, if a server using this library prior to this commit initiates the close handshake, wasClean will be false for the browser as the connection was closed before it could respond with a close frame. Thus, I believe it's necessary to fully implement the close handshake. @stephenyama You'll enjoy this.
-
- Sep 29, 2019
-
-
Anmol Sethi authored
Subprotocols didn't work with WASM at all before.
-