mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
26 lines
677 B
Go
26 lines
677 B
Go
package sniff
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"io"
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
C "github.com/sagernet/sing-box/constant"
|
|
"github.com/sagernet/sing/common/bufio"
|
|
)
|
|
|
|
func TLSClientHello(ctx context.Context, reader io.Reader) (*adapter.InboundContext, error) {
|
|
var clientHello *tls.ClientHelloInfo
|
|
err := tls.Server(bufio.NewReadOnlyConn(reader), &tls.Config{
|
|
GetConfigForClient: func(argHello *tls.ClientHelloInfo) (*tls.Config, error) {
|
|
clientHello = argHello
|
|
return nil, nil
|
|
},
|
|
}).HandshakeContext(ctx)
|
|
if clientHello != nil {
|
|
return &adapter.InboundContext{Protocol: C.ProtocolTLS, Domain: clientHello.ServerName}, nil
|
|
}
|
|
return nil, err
|
|
}
|