ExistDeletedIPList check if ip list has been deleted
(ipListId int64)
| 23 | |
| 24 | // ExistDeletedIPList check if ip list has been deleted |
| 25 | func ExistDeletedIPList(ipListId int64) bool { |
| 26 | deletedIPListLocker.RLock() |
| 27 | _, ok := deletedIPListIdMap[ipListId] |
| 28 | deletedIPListLocker.RUnlock() |
| 29 | return ok |
| 30 | } |