mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-02-01 13:46:35 +00:00
Freedom: Don't use rawConn copy when using utls (#4272)
This commit is contained in:
parent
ef4a3c1cae
commit
3e590a4eb1
|
@ -266,6 +266,9 @@ func isTLSConn(conn stat.Connection) bool {
|
|||
if _, ok := conn.(*tls.Conn); ok {
|
||||
return true
|
||||
}
|
||||
if _, ok := conn.(*tls.UConn); ok {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue