This commit is contained in:
TenderIronh
2026-04-01 15:33:30 +08:00
parent ef4bc1e1e3
commit 12393f00c5
23 changed files with 1047 additions and 383 deletions
+2 -1
View File
@@ -141,7 +141,8 @@ func (oConn *overlayConn) Write(buff []byte) (n int, err error) {
return
}
if oConn.connTCP != nil {
n, err = oConn.connTCP.Write(buff)
err = writeFull(oConn.connTCP, buff)
n = len(buff)
}
if err != nil {