aboutsummaryrefslogtreecommitdiff
path: root/node/node.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/node.hpp')
-rw-r--r--node/node.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/node/node.hpp b/node/node.hpp
index 9423860..76f3c0d 100644
--- a/node/node.hpp
+++ b/node/node.hpp
@@ -56,9 +56,12 @@ class Node
void start_precomputation();
void start_initialisation();
- void handle_initialization(cmix_proto::Initialization const& init);
+ void handle_node_initialization(cmix_proto::Initialization const& init);
+ void handle_node_bye(cmix_proto::Bye);
void handle_node_message(cmix_proto::CMixMessage message);
+ void handle_client_keyexchange(ClientMap::key_type handle, cmix_proto::KeyExchange ke);
+ void handle_client_bye(ClientMap::key_type handle, cmix_proto::Bye);
void handle_client_message(ClientMap::key_type handle, cmix_proto::CMixMessage message);
void handle_imanode(std::list<Receiver>::iterator handle);