add uint32ToTime

This commit is contained in:
Miek Gieben 2012-09-17 20:10:09 +02:00
parent 90740a6447
commit 10c0672a99
1 changed files with 3 additions and 5 deletions

View File

@ -494,15 +494,13 @@ func timeToUint32(t time.Time) uint32 {
// uint32ToTime translates a uint32 to a time.Time // uint32ToTime translates a uint32 to a time.Time
func uint32ToTime(t uint32) time.Time { func uint32ToTime(t uint32) time.Time {
/*
// uint32 to duration and then add it to epoch(0) // uint32 to duration and then add it to epoch(0)
mod := (time.Time.Unix() / year68) - 1 mod := (time.Now().Unix() / year68) - 1
if mod < 0 { if mod < 0 {
mod = 0 mod = 0
} }
// duration := (mod * year68) * t duration := time.Duration((mod * year68) * int64(t))
*/ return time.Unix(0,0).Add(duration)
return time.Time{}
} }
// jitterTime returns a random +/- jitter // jitterTime returns a random +/- jitter