mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-16 09:26:21 -05:00
16 lines
166 B
Go
16 lines
166 B
Go
package internet
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
type ConnectionHandler func(Connection)
|
|
|
|
type Connection interface {
|
|
net.Conn
|
|
}
|
|
|
|
type SysFd interface {
|
|
SysFd() (int, error)
|
|
}
|