摘要:
Golang TCP转发到指定地址 第二个版本,设置指定ip地址 代码 // tcpForward package main import ( "fmt" "net" "os" ) func TcpForward(port int, forAddr string) { lisPort := fmt.Sprint(":", port) listen,... 阅读全文
摘要:
Golang tcp 转发 第一版本 accept获取的Conn里的localAddr做为源地址,remoteAddr来做为目的地址 // tcpForward package main import ( "fmt" "net" "os" ) func TcpForward(port int) { lisPort := fmt.Sprint(":", po... 阅读全文