From 8cdd3a0abbf3fc779f772611e29f7755334be85a Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Sat, 3 Sep 2016 14:42:27 -0400 Subject: [PATCH] update routing path when we get a new lease set --- Datagram.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Datagram.cpp b/Datagram.cpp index 8b4c440b..1d1f5d2d 100644 --- a/Datagram.cpp +++ b/Datagram.cpp @@ -417,6 +417,8 @@ namespace datagram // clear invalid IBGW as we have a new lease set m_InvalidIBGW.clear(); m_RemoteLeaseSet = remoteIdent; + // update routing path + UpdateRoutingPath(GetNextRoutingPath()); // send the message that was queued if it was provided if(msg) HandleSend(msg);