diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-09-20 21:21:34 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-09-20 21:21:34 -0700 |
| commit | d3524f36090c47e11c2647f022b03e27d16aeb13 (patch) | |
| tree | 47c29a8b95ca69b2b51b7230ebaf9816bfbb71d1 /node/Network.hpp | |
| parent | 68e549233ddba17ec686a0462e2630580ee3d2a7 (diff) | |
| download | infinitytier-d3524f36090c47e11c2647f022b03e27d16aeb13.tar.gz infinitytier-d3524f36090c47e11c2647f022b03e27d16aeb13.zip | |
Refactor COM stuff a bit, and respond to COM requests a bit more readily for rapid setup. Will need to revisit later.
Diffstat (limited to 'node/Network.hpp')
| -rw-r--r-- | node/Network.hpp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/node/Network.hpp b/node/Network.hpp index 7a4065ff..c85e5993 100644 --- a/node/Network.hpp +++ b/node/Network.hpp @@ -248,7 +248,10 @@ public: void requestConfiguration(); /** - * Membership check gate for incoming packets related to this network + * Determine whether this peer is permitted to communicate on this network + * + * This also performs certain periodic actions such as pushing renewed + * credentials to peers or requesting them if not present. * * @param peer Peer to check * @param verb Packet verb @@ -263,12 +266,6 @@ public: bool gateMulticastGatherReply(const SharedPtr<Peer> &peer,const Packet::Verb verb,const uint64_t packetId); /** - * @param peer Peer to check - * @return True if peer has recently been a valid member of this network - */ - bool recentlyAllowedOnNetwork(const SharedPtr<Peer> &peer) const; - - /** * Perform cleanup and possibly save state */ void clean(); |
