mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
23 lines
495 B
Go
23 lines
495 B
Go
|
//go:build with_utls
|
||
|
|
||
|
package vless
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"reflect"
|
||
|
"unsafe"
|
||
|
|
||
|
"github.com/sagernet/sing/common"
|
||
|
utls "github.com/sagernet/utls"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
tlsRegistry = append(tlsRegistry, func(conn net.Conn) (loaded bool, netConn net.Conn, reflectType reflect.Type, reflectPointer uintptr) {
|
||
|
tlsConn, loaded := common.Cast[*utls.UConn](conn)
|
||
|
if !loaded {
|
||
|
return
|
||
|
}
|
||
|
return true, tlsConn.NetConn(), reflect.TypeOf(tlsConn.Conn).Elem(), uintptr(unsafe.Pointer(tlsConn.Conn))
|
||
|
})
|
||
|
}
|