aboutsummaryrefslogtreecommitdiff
path: root/node/node.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/node.hpp')
-rw-r--r--node/node.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/node/node.hpp b/node/node.hpp
index 1aad503..d9e16d4 100644
--- a/node/node.hpp
+++ b/node/node.hpp
@@ -104,7 +104,7 @@ class Node
CMixContext cmix_ctx;
- std::map<std::string, unsigned int> index_map;
+ std::vector<std::string> participants;
bool shutting_down;
@@ -123,8 +123,10 @@ class Node
void handle_node_prepre(cmix_proto::PrePre const& prepre);
void handle_node_premix(cmix_proto::PreMix const& premix);
void handle_node_prepost(cmix_proto::PrePost const& prepost);
+ void handle_node_commitments(cmix_proto::Commitments const& commitments);
void handle_node_realpre(cmix_proto::RealPre const& realpre);
void handle_node_realmix(cmix_proto::RealMix const& realmix);
+ void handle_node_realpost(cmix_proto::RealPost const& realpost);
void handle_node_message(cmix_proto::CMixMessage message);
void handle_client_keyexchange(ClientConnections::key_type handle, cmix_proto::KeyExchange const& ke);