2022-09-10 02:27:00 +00:00
|
|
|
package tls
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-09-30 03:27:18 +00:00
|
|
|
"net"
|
2022-09-10 02:27:00 +00:00
|
|
|
|
2022-09-30 03:27:18 +00:00
|
|
|
C "github.com/sagernet/sing-box/constant"
|
2022-09-10 02:27:00 +00:00
|
|
|
"github.com/sagernet/sing-box/log"
|
|
|
|
"github.com/sagernet/sing-box/option"
|
2023-02-28 03:30:46 +00:00
|
|
|
aTLS "github.com/sagernet/sing/common/tls"
|
2022-09-10 02:27:00 +00:00
|
|
|
)
|
|
|
|
|
2023-08-29 05:43:42 +00:00
|
|
|
func NewServer(ctx context.Context, logger log.Logger, options option.InboundTLSOptions) (ServerConfig, error) {
|
2022-11-13 03:24:37 +00:00
|
|
|
if !options.Enabled {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2023-08-29 05:43:42 +00:00
|
|
|
if options.ECH != nil && options.ECH.Enabled {
|
|
|
|
return NewECHServer(ctx, logger, options)
|
|
|
|
} else if options.Reality != nil && options.Reality.Enabled {
|
|
|
|
return NewRealityServer(ctx, logger, options)
|
2023-02-25 08:24:08 +00:00
|
|
|
} else {
|
2023-08-29 05:43:42 +00:00
|
|
|
return NewSTDServer(ctx, logger, options)
|
2023-02-25 08:24:08 +00:00
|
|
|
}
|
2022-09-10 02:27:00 +00:00
|
|
|
}
|
2022-09-30 03:27:18 +00:00
|
|
|
|
|
|
|
func ServerHandshake(ctx context.Context, conn net.Conn, config ServerConfig) (Conn, error) {
|
|
|
|
ctx, cancel := context.WithTimeout(ctx, C.TCPTimeout)
|
|
|
|
defer cancel()
|
2023-02-28 03:30:46 +00:00
|
|
|
return aTLS.ServerHandshake(ctx, conn, config)
|
2022-09-30 03:27:18 +00:00
|
|
|
}
|