From f60c80c56f21f3d39f845ae22a49b2c47835f022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Tue, 9 May 2023 12:51:55 +0800 Subject: [PATCH] Add AbstractConn interface --- common/network/conn.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/common/network/conn.go b/common/network/conn.go index 9a7de21..fd58e03 100644 --- a/common/network/conn.go +++ b/common/network/conn.go @@ -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) }