ws autobahn / report progress with spdlog::info to get timing info
This commit is contained in:
		@@ -1 +1 @@
 | 
				
			|||||||
5.1.8
 | 
					5.1.9
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -10,4 +10,4 @@ Interested ? Go read the [docs](https://bsergean.github.io/IXWebSocket/site/) !
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
IXWebSocket is actively being developed, check out the [changelog](CHANGELOG.md) to know what's cooking. If you are looking for a real time messaging service (the chat-like 'server' your websocket code will talk to) with many features such as history, backed by Redis, look at [cobra](https://github.com/machinezone/cobra).
 | 
					IXWebSocket is actively being developed, check out the [changelog](CHANGELOG.md) to know what's cooking. If you are looking for a real time messaging service (the chat-like 'server' your websocket code will talk to) with many features such as history, backed by Redis, look at [cobra](https://github.com/machinezone/cobra).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
IXWebSocket is not yet autobahn compliant, but we are working on changing this. See the current compliance [test results](https://bsergean.github.io/IXWebSocket/autobahn/index.html).
 | 
					IXWebSocket is not yet autobahn compliant, but we are working on changing this. See the current compliance [test results](https://bsergean.github.io/IXWebSocket/autobahn/index.html). The only tests that are still failing are the Websocket Compression ones (see section 12 and 13).
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,10 @@
 | 
				
			|||||||
# Changelog
 | 
					# Changelog
 | 
				
			||||||
All notable changes to this project will be documented in this file.
 | 
					All notable changes to this project will be documented in this file.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## [5.1.9] - 2019-09-03
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- ws autobahn / report progress with spdlog::info to get timing info
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## [5.1.8] - 2019-09-03
 | 
					## [5.1.8] - 2019-09-03
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- Per message deflate/compression: handle fragmented messages (fix autobahn test: 12.1.X and probably others)
 | 
					- Per message deflate/compression: handle fragmented messages (fix autobahn test: 12.1.X and probably others)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,4 +6,4 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#pragma once
 | 
					#pragma once
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define IX_WEBSOCKET_VERSION "5.1.8"
 | 
					#define IX_WEBSOCKET_VERSION "5.1.9"
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										3
									
								
								makefile
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								makefile
									
									
									
									
									
								
							@@ -63,6 +63,9 @@ test:
 | 
				
			|||||||
ws_test: ws
 | 
					ws_test: ws
 | 
				
			||||||
	(cd ws ; env DEBUG=1 PATH=../ws/build:$$PATH bash test_ws.sh)
 | 
						(cd ws ; env DEBUG=1 PATH=../ws/build:$$PATH bash test_ws.sh)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					autobahn_report:
 | 
				
			||||||
 | 
						cp -rvf ~/sandbox/reports/clients/* ../bsergean.github.io/IXWebSocket/autobahn/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# For the fork that is configured with appveyor
 | 
					# For the fork that is configured with appveyor
 | 
				
			||||||
rebase_upstream:
 | 
					rebase_upstream:
 | 
				
			||||||
	git fetch upstream
 | 
						git fetch upstream
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -42,6 +42,8 @@
 | 
				
			|||||||
#include <ixwebsocket/IXWebSocket.h>
 | 
					#include <ixwebsocket/IXWebSocket.h>
 | 
				
			||||||
#include <ixwebsocket/IXSocket.h>
 | 
					#include <ixwebsocket/IXSocket.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include <spdlog/spdlog.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace
 | 
					namespace
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
@@ -276,7 +278,7 @@ namespace ix
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        for (int i = 1 ; i < N; ++i)
 | 
					        for (int i = 1 ; i < N; ++i)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            std::cerr << "Execute test case " << i << std::endl;
 | 
					            spdlog::info("Execute test case {}", i);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            int caseNumber = i;
 | 
					            int caseNumber = i;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user