Simplify slice to array conversion

This commit is contained in:
Oleksandr Redko
2025-08-10 14:47:55 +03:00
committed by 世界
parent e1dbcccab5
commit 76ee64ae50
4 changed files with 5 additions and 5 deletions

View File

@@ -63,7 +63,7 @@ func (w *Writer) WriteBuffer(buffer *buf.Buffer) error {
if !w.isServer {
maskKey := rand.Uint32()
binary.BigEndian.PutUint32(header[1+payloadBitLength:], maskKey)
ws.Cipher(data, *(*[4]byte)(header[1+payloadBitLength:]), 0)
ws.Cipher(data, [4]byte(header[1+payloadBitLength:]), 0)
}
return wrapWsError(w.writer.WriteBuffer(buffer))