1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-23 12:10:47 -04:00
v2fly/transport/internet/kcp/tls.go

14 lines
191 B
Go
Raw Normal View History

2017-01-04 07:29:41 -05:00
package kcp
import "net"
type UnreusableConnection struct {
net.Conn
}
func (c UnreusableConnection) Reusable() bool {
return false
}
func (c UnreusableConnection) SetReusable(bool) {}