diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/higet/higet.cc | 5 | ||||
-rw-r--r-- | apps/http-proxy/src/IcnReceiver.cc | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/apps/higet/higet.cc b/apps/higet/higet.cc index fcb0cc540..2aa42e460 100644 --- a/apps/higet/higet.cc +++ b/apps/higet/higet.cc @@ -20,10 +20,11 @@ #include <experimental/algorithm> #include <experimental/functional> -#ifndef ASIO_STANDALONE #define ASIO_STANDALONE #include <asio.hpp> -#endif +#undef ASIO_STANDALONE + +#include <thread> typedef std::chrono::time_point<std::chrono::system_clock> Time; typedef std::chrono::milliseconds TimeDuration; diff --git a/apps/http-proxy/src/IcnReceiver.cc b/apps/http-proxy/src/IcnReceiver.cc index cc47e2ed4..24b0eb5dc 100644 --- a/apps/http-proxy/src/IcnReceiver.cc +++ b/apps/http-proxy/src/IcnReceiver.cc @@ -16,8 +16,10 @@ #include "IcnReceiver.h" #include "HTTP1.xMessageFastParser.h" +#include <hicn/transport/core/interest.h> #include <hicn/transport/http/default_values.h> #include <hicn/transport/utils/hash.h> +#include <hicn/transport/utils/log.h> #include <functional> #include <memory> |