mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-12 11:19:08 -05:00
net: take CJDNS into account in CNetAddr::GetReachabilityFrom()
This way `GetLocal()` will pick our CJDNS address for a CJDNS peer.
This commit is contained in:
parent
9b43b3b257
commit
c2d751abba
1 changed files with 5 additions and 0 deletions
|
@ -892,6 +892,11 @@ int CNetAddr::GetReachabilityFrom(const CNetAddr *paddrPartner) const
|
||||||
case NET_I2P: return REACH_PRIVATE;
|
case NET_I2P: return REACH_PRIVATE;
|
||||||
default: return REACH_DEFAULT;
|
default: return REACH_DEFAULT;
|
||||||
}
|
}
|
||||||
|
case NET_CJDNS:
|
||||||
|
switch (ourNet) {
|
||||||
|
case NET_CJDNS: return REACH_PRIVATE;
|
||||||
|
default: return REACH_DEFAULT;
|
||||||
|
}
|
||||||
case NET_TEREDO:
|
case NET_TEREDO:
|
||||||
switch(ourNet) {
|
switch(ourNet) {
|
||||||
default: return REACH_DEFAULT;
|
default: return REACH_DEFAULT;
|
||||||
|
|
Loading…
Add table
Reference in a new issue