1 Star 0 Fork 0

iqingfeng/ngrok

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
tcp.go 227 Bytes
Copy Edit Raw Blame History
package proto
import (
"ngrok/conn"
)
type Tcp struct{}
func NewTcp() *Tcp {
return new(Tcp)
}
func (h *Tcp) GetName() string { return "tcp" }
func (h *Tcp) WrapConn(c conn.Conn, ctx interface{}) conn.Conn {
return c
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/iqingfeng/ngrok.git
git@gitee.com:iqingfeng/ngrok.git
iqingfeng
ngrok
ngrok
e5a7b820743f

Search