mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 04:17:38 +03:00
14 lines
222 B
Go
14 lines
222 B
Go
//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)
|
|
}
|