Some cleanup, and use getPeerNoCache() exclusively in Cluster.

This commit is contained in:
Adam Ierymenko 2015-10-27 17:36:47 -07:00
parent 4221552c0b
commit 51fcc75354
3 changed files with 40 additions and 13 deletions

View file

@ -95,6 +95,14 @@ public:
{
}
inline Path &operator=(const Path &p)
throw()
{
if (this != &p)
memcpy(this,&p,sizeof(Path));
return *this;
}
/**
* Called when a packet is sent to this remote path
*