(tls options client) TLSOptions struct _validated member should be initialized to false
This commit is contained in:
parent
c60c606e0f
commit
ba3b1c1a0f
@ -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.
|
||||||
|
|
||||||
|
## [7.5.5] - 2019-12-17
|
||||||
|
|
||||||
|
(tls options client) TLSOptions struct _validated member should be initialized to false
|
||||||
|
|
||||||
## [7.5.4] - 2019-12-16
|
## [7.5.4] - 2019-12-16
|
||||||
|
|
||||||
(websocket client) improve the error message when connecting to a non websocket server
|
(websocket client) improve the error message when connecting to a non websocket server
|
||||||
|
@ -45,6 +45,6 @@ namespace ix
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
mutable std::string _errMsg;
|
mutable std::string _errMsg;
|
||||||
mutable bool _validated;
|
mutable bool _validated = false;
|
||||||
};
|
};
|
||||||
} // namespace ix
|
} // namespace ix
|
||||||
|
@ -6,4 +6,4 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define IX_WEBSOCKET_VERSION "7.5.4"
|
#define IX_WEBSOCKET_VERSION "7.5.5"
|
||||||
|
Loading…
Reference in New Issue
Block a user