(mac ssl) rename DarwinSSL -> SecureTransport (see this too -> https://github.com/curl/curl/issues/3733)
This commit is contained in:
		
							
								
								
									
										2
									
								
								.github/workflows/ccpp.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/ccpp.yml
									
									
									
									
										vendored
									
									
								
							@@ -12,7 +12,7 @@ jobs:
 | 
				
			|||||||
    - name: make test
 | 
					    - name: make test
 | 
				
			||||||
      run: make test
 | 
					      run: make test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  mac_tsan:
 | 
					  mac_tsan_sectransport:
 | 
				
			||||||
    runs-on: macOS-latest
 | 
					    runs-on: macOS-latest
 | 
				
			||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
    - uses: actions/checkout@v1
 | 
					    - uses: actions/checkout@v1
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,10 @@
 | 
				
			|||||||
# Changelog
 | 
					# Changelog
 | 
				
			||||||
All changes to this project will be documented in this file.
 | 
					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
 | 
					## [9.1.1] - 2020-03-26
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(websocket) fix data race accessing _socket object without mutex protection when calling wakeUpFromPoll in WebSocketTransport.cpp
 | 
					(websocket) fix data race accessing _socket object without mutex protection when calling wakeUpFromPoll in WebSocketTransport.cpp
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -71,7 +71,7 @@ namespace ix
 | 
				
			|||||||
#elif defined(IXWEBSOCKET_USE_OPEN_SSL)
 | 
					#elif defined(IXWEBSOCKET_USE_OPEN_SSL)
 | 
				
			||||||
        ss << " ssl/OpenSSL " << OPENSSL_VERSION_TEXT;
 | 
					        ss << " ssl/OpenSSL " << OPENSSL_VERSION_TEXT;
 | 
				
			||||||
#elif __APPLE__
 | 
					#elif __APPLE__
 | 
				
			||||||
        ss << " ssl/DarwinSSL";
 | 
					        ss << " ssl/SecureTransport";
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
        ss << " nossl";
 | 
					        ss << " nossl";
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,4 +6,4 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#pragma once
 | 
					#pragma once
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define IX_WEBSOCKET_VERSION "9.1.1"
 | 
					#define IX_WEBSOCKET_VERSION "9.1.2"
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user