diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-01-11 17:53:19 -0800 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-01-11 17:53:19 -0800 |
commit | d58870a92d1826b3318063c62ea0d88f78928813 (patch) | |
tree | ea5ac589dd0e46613676d3c2666fa214331d4ce7 | |
parent | 15ed7423ace400b6c40e5ff3988336dd7d3d2570 (diff) | |
download | infinitytier-d58870a92d1826b3318063c62ea0d88f78928813.tar.gz infinitytier-d58870a92d1826b3318063c62ea0d88f78928813.zip |
.
-rw-r--r-- | service/SoftwareUpdater.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/SoftwareUpdater.cpp b/service/SoftwareUpdater.cpp index dfdf4912..5889e3b8 100644 --- a/service/SoftwareUpdater.cpp +++ b/service/SoftwareUpdater.cpp @@ -370,7 +370,7 @@ void SoftwareUpdater::handleSoftwareUpdateUserMessage(uint64_t origin,const void case VERB_GET_DATA: if ((len >= 21)&&(_dist.size() > 0)) { - printf("<< DATA from %.10llx\n",origin); + printf("<< GET_DATA from %.10llx for %s\n",origin,Utils::hex(reinterpret_cast<const uint8_t *>(data) + 1,16).c_str()); std::map< Array<uint8_t,16>,_D >::iterator d(_dist.find(Array<uint8_t,16>(reinterpret_cast<const uint8_t *>(data) + 1))); if (d != _dist.end()) { unsigned long idx = (unsigned long)*(reinterpret_cast<const uint8_t *>(data) + 17) << 24; |