mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-04-03 04:06:37 +00:00
API: Fix data race in online ipList (#4513)
Fixes https://github.com/XTLS/Xray-core/issues/4512
This commit is contained in:
parent
3d21128159
commit
b70d0abebe
@ -40,11 +40,11 @@ func (c *OnlineMap) AddIP(ip string) {
|
|||||||
if ip == "127.0.0.1" {
|
if ip == "127.0.0.1" {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
c.access.Lock()
|
||||||
if _, ok := list[ip]; !ok {
|
if _, ok := list[ip]; !ok {
|
||||||
c.access.Lock()
|
|
||||||
list[ip] = time.Now()
|
list[ip] = time.Now()
|
||||||
c.access.Unlock()
|
|
||||||
}
|
}
|
||||||
|
c.access.Unlock()
|
||||||
if time.Since(c.lastCleanup) > c.cleanupPeriod {
|
if time.Since(c.lastCleanup) > c.cleanupPeriod {
|
||||||
list = c.RemoveExpiredIPs(list)
|
list = c.RemoveExpiredIPs(list)
|
||||||
c.lastCleanup = time.Now()
|
c.lastCleanup = time.Now()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user