mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
Add AbstractConn interface
This commit is contained in:
parent
8365dd48a1
commit
f60c80c56f
1 changed files with 9 additions and 0 deletions
|
@ -11,6 +11,15 @@ import (
|
|||
M "github.com/sagernet/sing/common/metadata"
|
||||
)
|
||||
|
||||
type AbstractConn interface {
|
||||
Close() error
|
||||
LocalAddr() net.Addr
|
||||
RemoteAddr() net.Addr
|
||||
SetDeadline(t time.Time) error
|
||||
SetReadDeadline(t time.Time) error
|
||||
SetWriteDeadline(t time.Time) error
|
||||
}
|
||||
|
||||
type PacketReader interface {
|
||||
ReadPacket(buffer *buf.Buffer) (destination M.Socksaddr, err error)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue