1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-01 16:26:02 -04:00
v2fly/transport/internet/connection.go

16 lines
166 B
Go
Raw Normal View History

2016-06-14 16:54:08 -04:00
package internet
import (
"net"
)
type ConnectionHandler func(Connection)
type Connection interface {
net.Conn
}
2016-06-29 18:08:20 -04:00
type SysFd interface {
SysFd() (int, error)
}