summaryrefslogtreecommitdiff
path: root/node/Peer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/Peer.hpp')
-rw-r--r--node/Peer.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/node/Peer.hpp b/node/Peer.hpp
index 5204cb84..805d044d 100644
--- a/node/Peer.hpp
+++ b/node/Peer.hpp
@@ -118,7 +118,7 @@ public:
* @param now Current time
*/
void receive(
- const RuntimeEnvironment *_r,
+ const RuntimeEnvironment *RR,
const SharedPtr<Socket> &fromSock,
const InetAddress &remoteAddr,
unsigned int hops,
@@ -140,7 +140,7 @@ public:
* @param now Current time
* @return Type of path used or Path::PATH_TYPE_NULL on failure
*/
- Path::Type send(const RuntimeEnvironment *_r,const void *data,unsigned int len,uint64_t now);
+ Path::Type send(const RuntimeEnvironment *RR,const void *data,unsigned int len,uint64_t now);
/**
* Send HELLO to a peer via all direct paths available
@@ -152,7 +152,7 @@ public:
* @param now Current time
* @return True if send appears successful for at least one address type
*/
- bool sendPing(const RuntimeEnvironment *_r,uint64_t now);
+ bool sendPing(const RuntimeEnvironment *RR,uint64_t now);
/**
* Called periodically by Topology::clean() to remove stale paths and do other cleanup