mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
53 lines
936 B
Go
53 lines
936 B
Go
package tls
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"net"
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
)
|
|
|
|
type (
|
|
STDConfig = tls.Config
|
|
STDConn = tls.Conn
|
|
)
|
|
|
|
type Config interface {
|
|
ServerName() string
|
|
SetServerName(serverName string)
|
|
NextProtos() []string
|
|
SetNextProtos(nextProto []string)
|
|
Config() (*STDConfig, error)
|
|
Client(conn net.Conn) Conn
|
|
Clone() Config
|
|
}
|
|
|
|
type ServerConfig interface {
|
|
Config
|
|
adapter.Service
|
|
Server(conn net.Conn) Conn
|
|
}
|
|
|
|
type Conn interface {
|
|
net.Conn
|
|
HandshakeContext(ctx context.Context) error
|
|
ConnectionState() tls.ConnectionState
|
|
}
|
|
|
|
func ParseTLSVersion(version string) (uint16, error) {
|
|
switch version {
|
|
case "1.0":
|
|
return tls.VersionTLS10, nil
|
|
case "1.1":
|
|
return tls.VersionTLS11, nil
|
|
case "1.2":
|
|
return tls.VersionTLS12, nil
|
|
case "1.3":
|
|
return tls.VersionTLS13, nil
|
|
default:
|
|
return 0, E.New("unknown tls version:", version)
|
|
}
|
|
}
|