keep working on xnet TCP

This commit is contained in:
Patricio Whittingslow
2025-10-23 21:18:25 -03:00
parent 7ac4d556c2
commit 92a245957b
5 changed files with 203 additions and 61 deletions
+2 -1
View File
@@ -111,7 +111,8 @@ func StringExchange(seg Segment, A, B State, invertDir bool) string {
//
// SynSent --> <SEQ=300><ACK=91>[SYN,ACK] --> SynRcvd
func appendStringExchange(buf []byte, seg Segment, A, B State, invertDir bool) []byte {
const emptySpaces = " "
const emptySpaces = " "
const spacelen = len(emptySpaces)
const fill = len(emptySpaces) - 1
appendVal := func(buf []byte, name string, i Value) []byte {
buf = append(buf, '<')