mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Merge time service to library
This commit is contained in:
parent
a74e3a1fa3
commit
3f6c423e76
4 changed files with 101 additions and 19 deletions
14
common/ntp/time_unix.go
Normal file
14
common/ntp/time_unix.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
//go:build linux || darwin
|
||||
|
||||
package ntp
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"golang.org/x/sys/unix"
|
||||
)
|
||||
|
||||
func SetSystemTime(nowTime time.Time) error {
|
||||
timeVal := unix.NsecToTimeval(nowTime.UnixNano())
|
||||
return unix.Settimeofday(&timeVal)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue