1 Star 0 Fork 0

wuzpdev/goworld

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Connection.go 353 Bytes
一键复制 编辑 原始数据 按行查看 历史
seis 提交于 2017-10-12 18:34 . Revert "Revert "encrypt connection""
package netutil
import "net"
// Connection interface for connections to servers
type Connection interface {
net.Conn // Connection is more than net.Conn
Flush() error
}
// NetConnection converts net.Conn to Connection
type NetConnection struct {
net.Conn
}
// Flush flushes network connection
func (c NetConnection) Flush() error {
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wuzpdev/goworld.git
git@gitee.com:wuzpdev/goworld.git
wuzpdev
goworld
goworld
v0.1.2

搜索帮助

0d507c66 1850385 C8b1a773 1850385