sing-box/common/tls/time_wrapper.go
2025-07-24 09:21:08 +08:00

26 lines
389 B
Go

package tls
import (
"time"
"github.com/sagernet/sing/common/ntp"
)
type TimeServiceWrapper struct {
ntp.TimeService
}
func (w *TimeServiceWrapper) TimeFunc() func() time.Time {
return func() time.Time {
if w.TimeService != nil {
return w.TimeService.TimeFunc()()
} else {
return time.Now()
}
}
}
func (w *TimeServiceWrapper) Upstream() any {
return w.TimeService
}