(mac ssl) rename DarwinSSL -> SecureTransport (see this too -> https://github.com/curl/curl/issues/3733)

This commit is contained in:
Benjamin Sergeant 2020-03-26 19:40:52 -07:00
parent 0fffb1e894
commit 771ebb2a4c
4 changed files with 7 additions and 3 deletions

View File

@ -12,7 +12,7 @@ jobs:
- name: make test
run: make test
mac_tsan:
mac_tsan_sectransport:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1

View File

@ -1,6 +1,10 @@
# Changelog
All changes to this project will be documented in this file.
## [9.1.2] - 2020-03-26
(mac ssl) rename DarwinSSL -> SecureTransport (see this too -> https://github.com/curl/curl/issues/3733)
## [9.1.1] - 2020-03-26
(websocket) fix data race accessing _socket object without mutex protection when calling wakeUpFromPoll in WebSocketTransport.cpp

View File

@ -71,7 +71,7 @@ namespace ix
#elif defined(IXWEBSOCKET_USE_OPEN_SSL)
ss << " ssl/OpenSSL " << OPENSSL_VERSION_TEXT;
#elif __APPLE__
ss << " ssl/DarwinSSL";
ss << " ssl/SecureTransport";
#endif
#else
ss << " nossl";

View File

@ -6,4 +6,4 @@
#pragma once
#define IX_WEBSOCKET_VERSION "9.1.1"
#define IX_WEBSOCKET_VERSION "9.1.2"