aboutsummaryrefslogtreecommitdiff
path: root/src/net.h
diff options
context:
space:
mode:
authorMartin Zumsande <mzumsande@gmail.com>2023-04-11 15:09:31 -0400
committerMartin Zumsande <mzumsande@gmail.com>2023-06-05 11:02:47 -0400
commit62d73f5370415f910c95a67b3d9f97bc85487bbe (patch)
tree202411f1e28f3b2da8f9f7a90092ba9e6ef22d92 /src/net.h
parentf4a8269dfc144cc918570bdb870aa5143a11c1fe (diff)
net, refactor: pass CNode instead of CNetAddr to GetLocalAddress
Access to CNode will be needed in the following commits.
Diffstat (limited to 'src/net.h')
-rw-r--r--src/net.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net.h b/src/net.h
index 83fe0427d4..e161671853 100644
--- a/src/net.h
+++ b/src/net.h
@@ -164,8 +164,8 @@ bool AddLocal(const CNetAddr& addr, int nScore = LOCAL_NONE);
void RemoveLocal(const CService& addr);
bool SeenLocal(const CService& addr);
bool IsLocal(const CService& addr);
-bool GetLocal(CService &addr, const CNetAddr *paddrPeer = nullptr);
-CService GetLocalAddress(const CNetAddr& addrPeer);
+bool GetLocal(CService& addr, const CNode& peer);
+CService GetLocalAddress(const CNode& peer);
CService MaybeFlipIPv6toCJDNS(const CService& service);