Fix fakeip routing

This commit is contained in:
世界 2023-06-10 16:26:40 +08:00
parent 0cb9cff690
commit 52e9059a8d
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
5 changed files with 38 additions and 18 deletions

View file

@ -21,3 +21,8 @@ type FakeIPStorage interface {
FakeIPLoad(address netip.Addr) (string, bool)
FakeIPReset() error
}
type FakeIPTransport interface {
dns.Transport
Store() FakeIPStore
}