From 010616e3ae2edcf294b0d4b8f0679fd94c6a1f2a Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Fri, 25 Oct 2013 13:43:04 -0400 Subject: Add some more TRACE output for certs. --- node/PacketDecoder.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'node/PacketDecoder.cpp') diff --git a/node/PacketDecoder.cpp b/node/PacketDecoder.cpp index 9f348bed..43ac8c29 100644 --- a/node/PacketDecoder.cpp +++ b/node/PacketDecoder.cpp @@ -847,8 +847,10 @@ bool PacketDecoder::_doNETWORK_CONFIG_REFRESH(const RuntimeEnvironment *_r,const while ((ptr + sizeof(uint64_t)) <= size()) { uint64_t nwid = at(ptr); ptr += sizeof(uint64_t); SharedPtr nw(_r->nc->network(nwid)); - if ((nw)&&(source() == nw->controller())) // only respond to requests from controller + if ((nw)&&(source() == nw->controller())) { // only respond to requests from controller + TRACE("NETWORK_CONFIG_REFRESH from %s, refreshing network %.16llx",source().toString().c_str(),nwid); nw->requestConfiguration(); + } } } catch (std::exception &exc) { TRACE("dropped NETWORK_CONFIG_REFRESH from %s(%s): unexpected exception: %s",source().toString().c_str(),_remoteAddress.toString().c_str(),exc.what()); -- cgit v1.2.3