mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-01 23:16:23 -05:00
Reserve sign bit
This commit is contained in:
parent
78d7b4f183
commit
a58b20b5b8
@ -96,7 +96,11 @@ func (a *AuthIDDecoderHolder) Match(AuthID [16]byte) (interface{}, error) {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if math.Abs(float64(t-time.Now().Unix())) > 120 {
|
if t < 0 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if math.Abs(math.Abs(float64(t))-float64(time.Now().Unix())) > 120 {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user