Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
3add6d4c2e | |||
0d7fb05567 | |||
bf1747ef18 | |||
5c9c05caff |
@ -2,6 +2,22 @@
|
||||
|
||||
All changes to this project will be documented in this file.
|
||||
|
||||
## [11.2.3] - 2021-03-24
|
||||
|
||||
(ssl + windows) missing include for CertOpenStore function
|
||||
|
||||
## [11.2.2] - 2021-03-23
|
||||
|
||||
(ixwebsocket) version bump
|
||||
|
||||
## [11.2.1] - 2021-03-23
|
||||
|
||||
(ixwebsocket) version bump
|
||||
|
||||
## [11.2.0] - 2021-03-23
|
||||
|
||||
(ixwebsocket) correct mingw support (gcc on windows)
|
||||
|
||||
## [11.1.4] - 2021-03-23
|
||||
|
||||
(ixwebsocket) add getMinWaitBetweenReconnectionRetries
|
||||
|
@ -16,6 +16,11 @@
|
||||
#include "IXSocketConnect.h"
|
||||
#include <string.h>
|
||||
|
||||
#ifdef _WIN32
|
||||
// For manipulating the certificate store
|
||||
#include <wincrypt.h>
|
||||
#endif
|
||||
|
||||
namespace ix
|
||||
{
|
||||
SocketMbedTLS::SocketMbedTLS(const SocketTLSOptions& tlsOptions, int fd)
|
||||
|
@ -24,6 +24,11 @@
|
||||
#endif
|
||||
#define socketerrno errno
|
||||
|
||||
#ifdef _WIN32
|
||||
// For manipulating the certificate store
|
||||
#include <wincrypt.h>
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
namespace
|
||||
{
|
||||
|
@ -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;
|
||||
|
@ -6,4 +6,4 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#define IX_WEBSOCKET_VERSION "11.1.4"
|
||||
#define IX_WEBSOCKET_VERSION "11.2.3"
|
||||
|
Reference in New Issue
Block a user