From 2686e8afea903b85bf862f5bcc3c83b3f73f8a97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Wed, 25 Oct 2023 12:00:00 +0800 Subject: [PATCH] Fix TUIC server TLS config not started --- inbound/tuic.go | 1 + 1 file changed, 1 insertion(+) diff --git a/inbound/tuic.go b/inbound/tuic.go index 19b4b3d7..bdef1c5d 100644 --- a/inbound/tuic.go +++ b/inbound/tuic.go @@ -49,6 +49,7 @@ func NewTUIC(ctx context.Context, router adapter.Router, logger log.ContextLogge tag: tag, listenOptions: options.ListenOptions, }, + tlsConfig: tlsConfig, } service, err := tuic.NewService[int](tuic.ServiceOptions{ Context: ctx,