From 5c9c05caff1578aaf93955e0ec6de28927ac2a67 Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Tue, 23 Mar 2021 21:52:49 -0700 Subject: [PATCH] bump version --- docs/CHANGELOG.md | 4 ++++ ixwebsocket/IXSocketServer.cpp | 3 ++- ixwebsocket/IXWebSocketVersion.h | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 68003449..b815db3f 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,10 @@ All changes to this project will be documented in this file. +## [11.2.0] - 2021-03-23 + +(ixwebsocket) correct mingw support (gcc on windows) + ## [11.1.4] - 2021-03-23 (ixwebsocket) add getMinWaitBetweenReconnectionRetries diff --git a/ixwebsocket/IXSocketServer.cpp b/ixwebsocket/IXSocketServer.cpp index 2cc88994..91c5eb96 100644 --- a/ixwebsocket/IXSocketServer.cpp +++ b/ixwebsocket/IXSocketServer.cpp @@ -357,7 +357,8 @@ namespace ix else // AF_INET6 { char remoteIp6[INET6_ADDRSTRLEN]; - if (ix::inet_ntop(AF_INET6, &client.sin_addr, remoteIp6, INET6_ADDRSTRLEN) == nullptr) + if (ix::inet_ntop(AF_INET6, &client.sin_addr, remoteIp6, INET6_ADDRSTRLEN) == + nullptr) { int err = Socket::getErrno(); std::stringstream ss; diff --git a/ixwebsocket/IXWebSocketVersion.h b/ixwebsocket/IXWebSocketVersion.h index a6df13cb..140bd281 100644 --- a/ixwebsocket/IXWebSocketVersion.h +++ b/ixwebsocket/IXWebSocketVersion.h @@ -6,4 +6,4 @@ #pragma once -#define IX_WEBSOCKET_VERSION "11.1.4" +#define IX_WEBSOCKET_VERSION "11.2.0"