diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2018-07-03 12:51:41 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2018-07-03 12:51:41 -0700 |
commit | 73e4286fbfce8ce017304f693a1190521ad4a8f9 (patch) | |
tree | d1323abad493995dae88db5cb5658ad451d7754e /controller/EmbeddedNetworkController.cpp | |
parent | 4e6151ebd97cbc145d6997f377b3db28d51c6bfc (diff) | |
download | infinitytier-73e4286fbfce8ce017304f693a1190521ad4a8f9.tar.gz infinitytier-73e4286fbfce8ce017304f693a1190521ad4a8f9.zip |
Fix two controller bugs: filesystem bug and another possible infinite recursion bug.
Diffstat (limited to 'controller/EmbeddedNetworkController.cpp')
-rw-r--r-- | controller/EmbeddedNetworkController.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/controller/EmbeddedNetworkController.cpp b/controller/EmbeddedNetworkController.cpp index ef52f6e0..a54950ff 100644 --- a/controller/EmbeddedNetworkController.cpp +++ b/controller/EmbeddedNetworkController.cpp @@ -504,6 +504,8 @@ void EmbeddedNetworkController::request( qe->identity = identity; qe->metaData = metaData; qe->type = _RQEntry::RQENTRY_TYPE_REQUEST; + char buf[1024]; + printf("!!! %.16llx %.16llx %s\n",nwid,requestPacketId,fromAddr.toString(buf)); _queue.post(qe); } |