From bb617490652c64ae2f1e97178cb1d43c773bc4ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Tue, 28 Feb 2023 11:48:29 +0800 Subject: [PATCH] Add net conn method to tls conn interface --- common/tls/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/common/tls/config.go b/common/tls/config.go index f33f777..7f8be0d 100644 --- a/common/tls/config.go +++ b/common/tls/config.go @@ -45,6 +45,7 @@ type WithSessionIDGenerator interface { type Conn interface { net.Conn + NetConn() net.Conn HandshakeContext(ctx context.Context) error ConnectionState() ConnectionState }