1 Star 0 Fork 0

徐大周的春天/websocket

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mask_safe.go 339 Bytes
一键复制 编辑 原始数据 按行查看 历史
Gary Burd 提交于 2016-12-31 20:13 . Add safe maskBytes
// Copyright 2016 The Gorilla WebSocket Authors. All rights reserved. Use of
// this source code is governed by a BSD-style license that can be found in the
// LICENSE file.
// +build appengine
package websocket
func maskBytes(key [4]byte, pos int, b []byte) int {
for i := range b {
b[i] ^= key[pos&3]
pos++
}
return pos & 3
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xu_dazhous_spring/websocket.git
git@gitee.com:xu_dazhous_spring/websocket.git
xu_dazhous_spring
websocket
websocket
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385