- Oct 10, 2023
-
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Jacalz authored
Fixes https://github.com/nhooyr/websocket/issues/359
-
Anmol Sethi authored
Credits to @maggie44 for making me add staticcheck. See #407 Co-authored-by:
maggie0002 <64841595+maggie0002@users.noreply.github.com>
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
-
arthmis authored
Co-authored-by:
lazypassion <25536767+lazypassion@users.noreply.github.com>
-
Anmol Sethi authored
Cherry picked from master at 129d3035
-
Anmol Sethi authored
Also ran gofmt on everything. Thanks again @paralin. #334 Co-authored-by:
Christian Stewart <christian@paral.in>
-
- Dec 13, 2022
-
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
-
- Apr 10, 2021
-
-
arthmis authored
Co-authored-by:
lazypassion <25536767+lazypassion@users.noreply.github.com>
-
- Apr 07, 2021
-
-
Anmol Sethi authored
Fix DOS attack from malicious pongs
-
Anmol Sethi authored
-
Anmol Sethi authored
A double channel close panic was possible if a peer sent back multiple pongs for every ping. If the second pong arrived before the ping goroutine deleted its channel from the map, the channel would be closed twice and so a panic would ensue. This fixes that by having the read goroutine send on the ping goroutine's channel rather than closing it. Reported via email by Tibor Kálmán @kalmant Please update to the new release ASAP!
-
- Jan 09, 2021
-
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
-
Anmol Sethi authored
Closes #247
-
Anmol Sethi authored
Updates #255
-
Anmol Sethi authored
netconn.go: Disable read limit on WebSocket
-
Anmol Sethi authored
-
Anmol Sethi authored
Closes #245
-
Anmol Sethi authored
Closes #242
-
Anmol Sethi authored
-
Anmol Sethi authored
Closes #87
-
Anmol Sethi authored
Merge master into dev
-
Anmol Sethi authored
-
Anmol Sethi authored
Thank you @icholy for identifying these in https://github.com/nhooyr/websocket/pull/259#issuecomment-702279421
-
Anmol Sethi authored
There were a few PRs merged into the master branch that were then not merged into the dev branch. This branch merges those changes in cleanly. - #261 - #266 - #273
-
- Dec 23, 2020
-
-
Egor Gorbunov authored
HTTP header values, as opposed to header keys, are case sensitive, but implementation of headerTokens() before this patch would return lowered values always. This old behavior could lead to chromium (v87) WebSocket rejecting connnection because negotiated subprotocol, returned in Sec-WebSocket-Protocol header (lowered be headerToken() function) would not match one sent by client, in case client specified value with capital letters.
-
- Nov 26, 2020
-
-
James authored
-