Skip to content
Snippets Groups Projects
Commit 323f3b7b authored by djq2's avatar djq2
Browse files

Can no longer proceed

parent ff237700
No related branches found
No related tags found
No related merge requests found
......@@ -364,10 +364,9 @@ void Node::check_for_deliverables(){
// ISIS protocol
void Node::isis_sender(std::string message_){
b_multicast(message_);
Message msg = Message(message_);
Message msg(message_);
int count = 0;
sent.insert(std::pair<std::string, std::pair<Message, int>>(msg.get_id(), std::pair<Message, int>(msg,count)));
check_for_deliverables();
sent.insert(std::pair<std::string, std::pair<Message, int>>(msg.get_id(), std::pair<Message, int>(msg,0)));
}
void Node::isis_reciever(std::string message_){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment