Files
hayato5246 39579240c8
Some checks failed
Build Push and Restart Compose / deploy (push) Failing after 1m34s
외부 의존성 추가: golang.org/x/net/proxygolang.org/x/time/rate 패키지 vendor 디렉토리에 추가
2026-04-01 22:06:46 +09:00

17 lines
360 B
Go

// 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.
//go:build appengine
// +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
}