Fix fake-ip mapping

This commit is contained in:
dyhkwong 2024-04-27 22:31:12 +08:00 committed by 世界
parent 8b8fb4344c
commit 3c85b8bc48
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 20 additions and 0 deletions

View file

@ -40,6 +40,13 @@ func (s *MemoryStorage) FakeIPSaveMetadataAsync(metadata *adapter.FakeIPMetadata
func (s *MemoryStorage) FakeIPStore(address netip.Addr, domain string) error {
s.addressAccess.Lock()
s.domainAccess.Lock()
if oldDomain, loaded := s.addressCache[address]; loaded {
if address.Is4() {
delete(s.domainCache4, oldDomain)
} else {
delete(s.domainCache6, oldDomain)
}
}
s.addressCache[address] = domain
if address.Is4() {
s.domainCache4[domain] = address