1
0
mirror of https://github.com/fumiama/WireGold.git synced 2026-06-19 01:30:26 +08:00

fix: async wait

This commit is contained in:
源文雨
2023-08-05 13:53:09 +08:00
parent a3ae280a7f
commit 1caf27dfa9
9 changed files with 252 additions and 156 deletions

View File

@@ -82,7 +82,7 @@ func (w *Writer) WriteUInt64(v uint64) {
}
func (w *Writer) WriteString(v string) {
w.WriteUInt32(uint32(len(v) + 4))
//w.WriteUInt32(uint32(len(v) + 4))
(*bytes.Buffer)(w).WriteString(v)
}