add concept of framing to net.tcp

This commit is contained in:
Joel Wetzell
2025-11-18 21:02:48 -06:00
parent 9ad60c8193
commit 86966132ca
5 changed files with 112 additions and 10 deletions

View File

@@ -0,0 +1,6 @@
package framing
type Framer interface {
Frame([]byte) [][]byte
Clear()
}