SSL socket class, downloadertest application, HTTP::Downloader support for HTTPS connections, authentication, proxies and POST requests
This commit is contained in:
parent
ce9aae3095
commit
5e3df09831
6 changed files with 467 additions and 44 deletions
|
@ -72,6 +72,9 @@ endif()
|
|||
if (DEFINED BIGMETA )
|
||||
add_definitions(-DBIGMETA=1)
|
||||
endif()
|
||||
if (NOT DEFINED NOSSL )
|
||||
add_definitions(-DSSL=1)
|
||||
endif()
|
||||
|
||||
########################################
|
||||
# Build Variables - Thread Names #
|
||||
|
@ -177,6 +180,9 @@ target_link_libraries(mist
|
|||
-lpthread
|
||||
${LIBRT}
|
||||
)
|
||||
if (NOT DEFINED NOSSL )
|
||||
target_link_libraries(mist mbedtls mbedx509 mbedcrypto)
|
||||
endif()
|
||||
install(
|
||||
FILES ${libHeaders}
|
||||
DESTINATION include/mist
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue