summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/stdclock.go
AgeCommit message (Collapse)Author
2021-05-03Implement standard clock safelyGhanan Gowripalan
Previously, tcpip.StdClock depended on linking with the unexposed method time.now to implement tcpip.Clock using the time package. This change updates the standard clock to not require manually linking to this unexported method and use publicly documented functions from the time package. PiperOrigin-RevId: 371805101