Enzo 
							
						 
					 
					
						
						
							
						
						3f1fc6906c 
					 
					
						
						
							
							Correctly convert remote port bytecode to uint16 port number. ( #321 )  
						
						... 
						
						
						
						* Correctly convert remote port bytecode to uint16 port number.
Copied the network_to_host_short function from the ASIO library to convert the remote port byte code to a uint16 number.
* Switched from uint16_t to unsigned short to work in Windows
* Updated missed uint16_t to unsigned short 
						
						
							
						
					 
					
						2021-10-22 10:23:43 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						9bbd1f1b30 
					 
					
						
						
							
							Update package-lock.json  
						
						... 
						
						
						
						Fix a security issue with the node.js ws package, which is only used in testing. 
						
						
							
						
					 
					
						2021-09-29 12:18:15 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						18c2b69633 
					 
					
						
						
							
							Update build.md  
						
						
						
						
							
						
					 
					
						2021-09-29 12:15:31 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						178f218374 
					 
					
						
						
							
							Update IXWebSocketVersion.h  
						
						
						
						
							
						
					 
					
						2021-09-20 18:19:29 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						6a1aa27b5f 
					 
					
						
						
							
							Update CHANGELOG.md  
						
						
						
						
							
						
					 
					
						2021-09-20 18:19:10 -07:00 
						 
				 
			
				
					
						
							
							
								Matthew Albrecht 
							
						 
					 
					
						
						
							
						
						e7f89ae529 
					 
					
						
						
							
							Only find OpenSSL, MbedTLS, zlib if they have not already been found, make CMake install optional. ( #307 )  
						
						... 
						
						
						
						Co-authored-by: Benjamin Sergeant <bsergean@gmail.com > 
						
						
							
						
					 
					
						2021-09-20 18:15:37 -07:00 
						 
				 
			
				
					
						
							
							
								Adrian Schollmeyer 
							
						 
					 
					
						
						
							
						
						cdeaf8e2be 
					 
					
						
						
							
							use GNUInstallDirs in cmake ( #318 )  
						
						... 
						
						
						
						Signed-off-by: NexAdn <git@nexadn.de >
Co-authored-by: NexAdn <git@nexadn.de > 
						
						
							
						
					 
					
						2021-09-20 18:11:46 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						dbafa0aa07 
					 
					
						
						
							
							trigger github actions on pull requests ( #313 )  
						
						
						
						
							
						
					 
					
						2021-08-13 05:07:24 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						3baf59a031 
					 
					
						
						
							
							(ws) bump CLI command line parsing library from 1.8 to 2.0  
						
						
						
						
							
						
					 
					
						2021-07-27 20:48:25 +02:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						b5804c2082 
					 
					
						
						
							
							cmake tweak  
						
						
						
						
							
						
					 
					
						2021-06-09 10:46:31 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						30bcddb99f 
					 
					
						
						
							
							(ws) ws connect has a -g option to gzip decompress messages for API such as the websocket Huobi Global.  
						
						
						
						
							
						
					 
					
						2021-06-08 09:49:27 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						47fd04e210 
					 
					
						
						
							
							(websocket client + server) WebSocketMessage class tweak to fix unsafe patterns  
						
						
						
						
							
						
					 
					
						2021-06-08 09:47:53 -07:00 
						 
				 
			
				
					
						
							
							
								Nikos Athanasiou 
							
						 
					 
					
						
						
							
						
						4f5b0c4f07 
					 
					
						
						
							
							Noexcept ix web socket per message deflate options ( #299 )  
						
						... 
						
						
						
						* Fix unsafe calls and safeguard WebSocketMessage from being called w/
temporaries
* Use unnamed namespace to express internal linkage
* Avoid returning references that are mutex protected
Motivation for this MR
The antipattern of returning references to mutex protected members was
removed. Since a caller can hold the reference it would make all class
level locking meaningless.
Instead values are returned. The IXWebSocketPerMessageDeflateOptions
class was shrunk by 7 bytes (1 padding + 2*3) after changing the int
members to the used uint8_t; side effects of that were handled.
An inefficient "string -> int" was replaced by standard library. As
seen here http://coliru.stacked-crooked.com/a/46b5990bafb9c626  this
gives an order of magnitude better performance.
* noexcept string to integer conversion 
						
						
							
						
					 
					
						2021-06-07 11:19:52 -07:00 
						 
				 
			
				
					
						
							
							
								Nikos Athanasiou 
							
						 
					 
					
						
						
							
						
						c2d497abc5 
					 
					
						
						
							
							Avoid returning references that are mutex protected ( #297 )  
						
						... 
						
						
						
						* Fix unsafe calls and safeguard WebSocketMessage from being called w/
temporaries
* Use unnamed namespace to express internal linkage
* Avoid returning references that are mutex protected
Motivation for this MR
The antipattern of returning references to mutex protected members was
removed. Since a caller can hold the reference it would make all class
level locking meaningless.
Instead values are returned. The IXWebSocketPerMessageDeflateOptions
class was shrunk by 7 bytes (1 padding + 2*3) after changing the int
members to the used uint8_t; side effects of that were handled.
An inefficient "string -> int" was replaced by standard library. As
seen here http://coliru.stacked-crooked.com/a/46b5990bafb9c626  this
gives an order of magnitude better performance. 
						
						
							
						
					 
					
						2021-06-05 11:23:18 -07:00 
						 
				 
			
				
					
						
							
							
								crjc 
							
						 
					 
					
						
						
							
						
						bbe2ae6dd3 
					 
					
						
						
							
							fix: check the request's headers rather than the empty response's headers for User-Agent and Accept ( #296 )  
						
						
						
						
							
						
					 
					
						2021-06-05 11:19:53 -07:00 
						 
				 
			
				
					
						
							
							
								Nikos Athanasiou 
							
						 
					 
					
						
						
							
						
						26897b2425 
					 
					
						
						
							
							Fix unsafe calls and safeguard WebSocketMessage ( #294 )  
						
						... 
						
						
						
						* Fix unsafe calls and safeguard WebSocketMessage from being called w/
temporaries
* Use unnamed namespace to express internal linkage 
						
						
							
						
					 
					
						2021-06-03 18:39:38 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						e3c98a03cc 
					 
					
						
						
							
							(websocket server) Handle and accept firefox browser special upgrade value (keep-alive, Upgrade)  
						
						
						
						
							
						
					 
					
						2021-05-27 10:54:21 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						97fedf9482 
					 
					
						
						
							
							(Windows) move EINVAL (re)definition from IXSocket.h to IXNetSystem.h ( fix   #289 )  
						
						
						
						
							
						
					 
					
						2021-05-27 10:54:21 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						ae187c0e98 
					 
					
						
						
							
							Readme: Add mingw to build matrix  
						
						
						
						
							
						
					 
					
						2021-05-18 11:15:21 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						0f21a20fe3 
					 
					
						
						
							
							Move errno windows definitions to IXNetSystem.h  
						
						
						
						
							
						
					 
					
						2021-05-17 19:04:02 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						54db6ec8bb 
					 
					
						
						
							
							add notes about ssl configuration in demo program  
						
						
						
						
							
						
					 
					
						2021-05-09 13:45:01 -07:00 
						 
				 
			
				
					
						
							
							
								flagarde 
							
						 
					 
					
						
						
							
						
						0e0a748037 
					 
					
						
						
							
							Remove warnings ( #284 )  
						
						
						
						
							
						
					 
					
						2021-04-19 09:25:06 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						3b19b0eeca 
					 
					
						
						
							
							http client: DEL is not a verb, but DELETE is,  fix   #281  
						
						
						
						
							
						
					 
					
						2021-04-04 23:27:28 -07:00 
						 
				 
			
				
					
						
							
							
								Bart 
							
						 
					 
					
						
						
							
						
						dbfe3104e8 
					 
					
						
						
							
							Fixed example code for the new API of IXWebSocketServer ( #279 )  
						
						
						
						
							
						
					 
					
						2021-03-26 23:55:34 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						68fd8c20d6 
					 
					
						
						
							
							change CI mkdocs invocation  
						
						
						
						
							
						
					 
					
						2021-03-25 11:12:59 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						d932af8568 
					 
					
						
						
							
							(cmake) install IXUniquePtr.h  
						
						
						
						
							
 
						
					 
					
						2021-03-25 10:55:59 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						3add6d4c2e 
					 
					
						
						
							
							(ssl + windows) missing include for CertOpenStore function  
						
						
						
						
							
 
						
					 
					
						2021-03-24 08:03:56 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						0d7fb05567 
					 
					
						
						
							
							(ixwebsocket) version bump  
						
						
						
						
							
 
						
					 
					
						2021-03-23 21:54:54 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						bf1747ef18 
					 
					
						
						
							
							(ixwebsocket) version bump  
						
						
						
						
							
						
					 
					
						2021-03-23 21:54:15 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						5c9c05caff 
					 
					
						
						
							
							bump version  
						
						
						
						
							
 
						
					 
					
						2021-03-23 21:52:49 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						2573ca151b 
					 
					
						
						
							
							CaseInsensitiveLess::NocaseCompare::operator mingw fix attempt  
						
						
						
						
							
 
						
					 
					
						2021-03-23 21:21:36 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						c5b5fa82be 
					 
					
						
						
							
							use inet_* wrapper only on mingw  
						
						
						
						
							
						
					 
					
						2021-03-23 21:13:18 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						80dff08304 
					 
					
						
						
							
							invoke ctest manually on ci for windows + gcc builder  
						
						
						
						
							
						
					 
					
						2021-03-23 21:07:26 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						24c2eae3d7 
					 
					
						
						
							
							use inet_ntop and inet_pton musl implementations on all platforms  
						
						
						
						
							
						
					 
					
						2021-03-23 20:53:19 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						449c5fa138 
					 
					
						
						
							
							(ixwebsocket) add getMinWaitBetweenReconnectionRetries  
						
						
						
						
							
 
						
					 
					
						2021-03-23 08:29:50 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						b6234ff908 
					 
					
						
						
							
							compile errors due to missing changes for the introduction of setMinWaitBetweenReconnectionRetries and getMinWaitBetweenReconnectionRetries  
						
						
						
						
							
						
					 
					
						2021-03-23 08:28:40 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						d26664fccc 
					 
					
						
						
							
							(ixwebsocket) New option to set the min wait between reconnection attempts. Still default to 1ms. (setMinWaitBetweenReconnectionRetries).  
						
						
						
						
							
						
					 
					
						2021-03-23 07:33:48 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						def0243d6d 
					 
					
						
						
							
							(ws) initialize maxWaitBetweenReconnectionRetries to a non zero value ; a zero value was causing spurious reconnections attempts  
						
						
						
						
							
						
					 
					
						2021-03-22 21:10:18 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						1410797d6f 
					 
					
						
						
							
							document -DBUILD_DEMO=ON  
						
						
						
						
							
						
					 
					
						2021-03-22 08:51:58 -07:00 
						 
				 
			
				
					
						
							
							
								inull 
							
						 
					 
					
						
						
							
						
						2670187fe0 
					 
					
						
						
							
							Adds demo building option. ( #278 )  
						
						
						
						
							
						
					 
					
						2021-03-22 08:47:10 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						95359461d7 
					 
					
						
						
							
							enable test on windows + gcc  
						
						
						
						
							
						
					 
					
						2021-03-21 10:22:44 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						4d7b149649 
					 
					
						
						
							
							mingw: cast fixes  
						
						
						
						
							
						
					 
					
						2021-03-21 10:16:06 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						b29a37ce76 
					 
					
						
						
							
							mingw: inet_ntop and inet_pton compilation fix, use correct parameter names  
						
						
						
						
							
						
					 
					
						2021-03-21 09:50:15 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						9a4dfb40da 
					 
					
						
						
							
							mingw: add real implementation of inet_ntop and inet_pton taken from musl C library  
						
						
						
						
							
						
					 
					
						2021-03-21 09:43:16 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						c4c344518d 
					 
					
						
						
							
							disable shared-libs on windows where test does not work yet  
						
						
						
						
							
						
					 
					
						2021-03-20 10:18:10 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						d706a4a73e 
					 
					
						
						
							
							doc: document BUILD_SHARED_LIBS  
						
						
						
						
							
						
					 
					
						2021-03-20 09:50:21 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						88970604e3 
					 
					
						
						
							
							ixwebsocketserver::broadcast server to return a boolean to know whether the server could start/listen, and use that in ws  
						
						
						
						
							
						
					 
					
						2021-03-19 11:52:41 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						7fee54464e 
					 
					
						
						
							
							WebSocketServer::listenAndStart: fix branch where we do not return an integer  
						
						
						
						
							
						
					 
					
						2021-03-19 11:48:21 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						1c7634d075 
					 
					
						
						
							
							ws: cannot use << with an std::vector  
						
						
						
						
							
						
					 
					
						2021-03-19 11:43:29 -07:00 
						 
				 
			
				
					
						
							
							
								Benjamin Sergeant 
							
						 
					 
					
						
						
							
						
						99f9556aa9 
					 
					
						
						
							
							ws + mingw: uses << operator to write file to disk in WebSocketReceiver::handleMessage  
						
						
						
						
							
						
					 
					
						2021-03-19 11:39:14 -07:00