mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 07:32:22 +08:00
28 lines
676 B
Go
28 lines
676 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, metadata *adapter.InboundContext, reader io.Reader) 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 {
|
|
metadata.Protocol = C.ProtocolTLS
|
|
metadata.Domain = clientHello.ServerName
|
|
return nil
|
|
}
|
|
return err
|
|
}
|