Fix async FakeIP save

This commit is contained in:
世界 2023-07-08 16:08:46 +08:00
parent 1c526feec1
commit 9d75385bbb
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
5 changed files with 41 additions and 9 deletions

View file

@ -4,6 +4,7 @@ import (
"net/netip"
"github.com/sagernet/sing-dns"
"github.com/sagernet/sing/common/logger"
)
type FakeIPStore interface {
@ -18,6 +19,7 @@ type FakeIPStorage interface {
FakeIPMetadata() *FakeIPMetadata
FakeIPSaveMetadata(metadata *FakeIPMetadata) error
FakeIPStore(address netip.Addr, domain string) error
FakeIPStoreAsync(address netip.Addr, domain string, logger logger.Logger)
FakeIPLoad(address netip.Addr) (string, bool)
FakeIPReset() error
}