mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-18 18:36:11 -05:00
14 lines
191 B
Go
14 lines
191 B
Go
package kcp
|
|
|
|
import "net"
|
|
|
|
type UnreusableConnection struct {
|
|
net.Conn
|
|
}
|
|
|
|
func (c UnreusableConnection) Reusable() bool {
|
|
return false
|
|
}
|
|
|
|
func (c UnreusableConnection) SetReusable(bool) {}
|