Various performance and correctness improvements.

This commit is contained in:
Jay
2026-04-20 22:41:37 -04:00
parent 72b1ca7ad1
commit daf9f7534e
25 changed files with 577 additions and 297 deletions
+5
View File
@@ -22,3 +22,8 @@ type Socket interface {
SetWriteDeadline(t time.Time) error
SetCloseHandler(h func(code int, text string) error)
}
type ReceivedMessage struct {
Data []byte
ReceivedAt time.Time
}