Skip to content

Commit 1cc90bb

Browse files
committed
netconn: Explain why we start with the two int64 atomics
1 parent 4c27331 commit 1cc90bb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

netconn.go

+2
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ func NetConn(ctx context.Context, c *Conn, msgType MessageType) net.Conn {
9494
}
9595

9696
type netConn struct {
97+
// These must be first to be aligned on 32 bit platforms.
98+
// https://github.com/nhooyr/websocket/pull/438
9799
readExpired int64
98100
writeExpired int64
99101

0 commit comments

Comments
 (0)