完成TPKT、X224、FastPath协议基本封装和测试

This commit is contained in:
2025-03-31 14:10:03 +08:00
parent 7c2bbde75b
commit 6720895668
9 changed files with 608 additions and 0 deletions

11
app/client_test.go Normal file
View File

@@ -0,0 +1,11 @@
package app
import "testing"
func TestClient(t *testing.T) {
c := NewClient("127.0.0.1", 3388)
err := c.Start()
if err != nil {
t.Fatal(err)
}
}