We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5798948 commit 0af5b58Copy full SHA for 0af5b58
mask_asm.go
@@ -3,6 +3,8 @@
3
package websocket
4
5
func mask(b []byte, key uint32) uint32 {
6
+ // TODO: Will enable in v1.9.0.
7
+ return maskGo(b, key)
8
if len(b) > 0 {
9
return maskAsm(&b[0], len(b), key)
10
}
0 commit comments