端口管理器 和 传输层 基础框架

This commit is contained in:
impact-eintr
2022-11-28 20:51:26 +08:00
parent c7c7374bbd
commit 8a047726ca
13 changed files with 1007 additions and 31 deletions

14
cmd/tcpclient/main.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import (
"fmt"
"net"
)
func main() {
_, err := net.Dial("tcp", "192.168.1.1:9999")
if err != nil {
fmt.Println("err : ", err)
return
}
}