fix(handler/relay): remove remaining Chinese comments missed in conversion

Clean up 12 inline comments across bind.go, conn.go, connect.go,
entrypoint.go, handler.go that were still in Chinese.
This commit is contained in:
ginuerzh
2026-06-03 23:09:04 +08:00
parent d5fd62aa47
commit a1fddedcc3
5 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ func (c *tcpConn) Read(b []byte) (n int, err error) {
func (c *tcpConn) Write(b []byte) (n int, err error) {
n = len(b) // always return len(b), not actual bytes written
if c.wbuf.Len() > 0 {
c.wbuf.Write(b) // 将数据追加到缓存的头部之后
c.wbuf.Write(b) // append data after the cached header
_, err = c.wbuf.WriteTo(c.Conn)
return
}