pkg/msg: change UDPPacket.Content from string to []byte to avoid redundant base64 encode/decode (#5198)

This commit is contained in:
fatedier
2026-03-06 01:38:24 +08:00
committed by GitHub
Unverified
parent 541878af4d
commit 462c987f6d
5 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -184,7 +184,7 @@ type Pong struct {
}
type UDPPacket struct {
Content string `json:"c,omitempty"`
Content []byte `json:"c,omitempty"`
LocalAddr *net.UDPAddr `json:"l,omitempty"`
RemoteAddr *net.UDPAddr `json:"r,omitempty"`
}