From 3718e549ee31ac764b327bbf3d6e51dd7e224b46 Mon Sep 17 00:00:00 2001 From: Angelo Mantellini Date: Thu, 26 Mar 2020 12:02:23 +0100 Subject: [HICN-581] update hicn stack to support windows, again Signed-off-by: Angelo Mantellini Change-Id: Ic5cfeae600fde8140a076807fa1e411da1933a02 --- libtransport/CMakeLists.txt | 8 +++++--- libtransport/includes/hicn/transport/core/packet.h | 1 - libtransport/src/core/prefix.cc | 3 ++- libtransport/src/core/tcp_socket_connector.cc | 2 +- libtransport/src/core/udp_socket_connector.cc | 2 +- libtransport/src/http/response.cc | 14 ++++++-------- 6 files changed, 15 insertions(+), 15 deletions(-) (limited to 'libtransport') diff --git a/libtransport/CMakeLists.txt b/libtransport/CMakeLists.txt index 973dbaf35..c431ace04 100644 --- a/libtransport/CMakeLists.txt +++ b/libtransport/CMakeLists.txt @@ -99,7 +99,11 @@ if(CMAKE_SOURCE_DIR STREQUAL PROJECT_SOURCE_DIR) find_package_wrapper(Libhicn REQUIRED) else() if (DISABLE_SHARED_LIBRARIES) - set(HICN_LIBRARIES ${LIBHICN_STATIC} log) + if (WIN32) + set(HICN_LIBRARIES ${LIBHICN_STATIC}) + else () + set(HICN_LIBRARIES ${LIBHICN_STATIC} log) + endif () list(APPEND DEPENDENCIES ${LIBHICN_STATIC} ) @@ -144,8 +148,6 @@ if(${CMAKE_SYSTEM_NAME} STREQUAL "Android") find_package(OpenSSL REQUIRED) endif () -message ("---------------------------> ${OPENSSL_LIBRARIES}") - list(APPEND LIBRARIES ${LIBPARC_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} diff --git a/libtransport/includes/hicn/transport/core/packet.h b/libtransport/includes/hicn/transport/core/packet.h index 3ddc4a595..e58e7962d 100644 --- a/libtransport/includes/hicn/transport/core/packet.h +++ b/libtransport/includes/hicn/transport/core/packet.h @@ -257,7 +257,6 @@ class Packet : public std::enable_shared_from_this { utils::MemBuf *header_head_; utils::MemBuf *payload_head_; mutable Format format_; - static const core::Name base_name; }; diff --git a/libtransport/src/core/prefix.cc b/libtransport/src/core/prefix.cc index 59898ab70..30f780461 100644 --- a/libtransport/src/core/prefix.cc +++ b/libtransport/src/core/prefix.cc @@ -226,7 +226,7 @@ Name Prefix::getRandomName() const { ip_prefix_.len; size_t size = (size_t)ceil((float)addr_len / 8.0); - uint8_t buffer[size]; + uint8_t *buffer = (uint8_t *) malloc(sizeof(uint8_t) * size); RAND_bytes(buffer, size); @@ -237,6 +237,7 @@ Name Prefix::getRandomName() const { name_ip_buffer[i] = buffer[j]; j++; } + free(buffer); return Name(ip_prefix_.family, (uint8_t *)&name_ip); } diff --git a/libtransport/src/core/tcp_socket_connector.cc b/libtransport/src/core/tcp_socket_connector.cc index 58df8fb08..20b3d6ce6 100644 --- a/libtransport/src/core/tcp_socket_connector.cc +++ b/libtransport/src/core/tcp_socket_connector.cc @@ -15,7 +15,7 @@ #include #ifdef _WIN32 -#include +#include #endif #include diff --git a/libtransport/src/core/udp_socket_connector.cc b/libtransport/src/core/udp_socket_connector.cc index ec59c2e64..f5ddd6270 100644 --- a/libtransport/src/core/udp_socket_connector.cc +++ b/libtransport/src/core/udp_socket_connector.cc @@ -14,7 +14,7 @@ */ #ifdef _WIN32 -#include +#include #endif #include diff --git a/libtransport/src/http/response.cc b/libtransport/src/http/response.cc index ba0acd1ac..409992835 100644 --- a/libtransport/src/http/response.cc +++ b/libtransport/src/http/response.cc @@ -16,8 +16,8 @@ #include #include -#include -#include +#include +#include #include @@ -62,11 +62,9 @@ std::size_t HTTPResponse::parseHeaders(const uint8_t *buffer, std::size_t size, const char *crlf2 = "\r\n\r\n"; const char *begin = (const char *)buffer; const char *end = begin + size; - auto it = - std::experimental::search(begin, end, - std::experimental::make_boyer_moore_searcher( - crlf2, crlf2 + strlen(crlf2))); - + const char *begincrlf2 = (const char *)crlf2; + const char *endcrlf2 = begincrlf2 + strlen(crlf2); + auto it = std::search(begin, end, begincrlf2, endcrlf2); if (it != end) { std::stringstream ss; ss.str(std::string(begin, it)); @@ -135,4 +133,4 @@ const std::string &HTTPResponse::getStatusString() const { } // namespace http -} // namespace transport \ No newline at end of file +} // namespace transport -- cgit 1.2.3-korg