Add net conn method to tls conn interface

This commit is contained in:
世界 2023-02-28 11:48:29 +08:00
parent b60f6390df
commit bb61749065
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -45,6 +45,7 @@ type WithSessionIDGenerator interface {
type Conn interface {
net.Conn
NetConn() net.Conn
HandshakeContext(ctx context.Context) error
ConnectionState() ConnectionState
}