Vinnie Falco
e23ecc8ac9
Set version to 179
2018-07-23 10:37:21 -07:00
Joe Loser
283c9f26f3
Remove some unused variables
...
fix #1197
2018-07-23 09:20:51 -07:00
Daniela Engert
e0f4c1d769
Most members of std::allocate are deprecated in C++17:
...
fix #1202
Replace them by their cousins from std::allocator_traits;
otherwise, heaps of deprecation warnings will fall onto
humble users when compiling with MSVC 15 in C++17 mode.
Signed-off-by: Daniela Engert <dani@ngrt.de >
2018-07-23 09:19:46 -07:00
Glen Fernandes
8ed039200d
Use the exchange() idiom in move constructors
...
fix #1203
2018-07-23 09:19:16 -07:00
Vinnie Falco
c4d1bfe7af
Set version to 178
2018-07-15 09:13:08 -07:00
Vinnie Falco
92d34b9e3b
Use static_cast instead
...
fix #1163
2018-07-15 09:11:15 -07:00
Vinnie Falco
dd6dff92ab
Typo in release notes
2018-07-15 08:32:52 -07:00
Vinnie Falco
e9e5d159c6
Set version to 177
2018-07-12 11:10:00 -07:00
Pierre Zawadil
ceddef35a7
Update README.md
...
fix #1170
2018-07-12 11:09:26 -07:00
cos-public
c2ecba968c
Check error in example set_option
...
fix #1186
2018-07-12 11:07:10 -07:00
Vinnie Falco
b7078c04c9
Set /permissive-
2018-07-12 08:50:54 -07:00
Vinnie Falco
e8c6a82c3b
Add test for issue #1188
2018-07-12 08:49:25 -07:00
Vinnie Falco
e73b33f2bf
Set version to 176
2018-07-08 15:20:10 -07:00
Vinnie Falco
749e54f31b
Generated WebSocket masks use a secure PRNG by default:
...
This resolves a medium vulnerability described in the
Beast Hybrid Assessment Report by Bishop Fox, where masks generated
for use with outgoing WebSocket client frames use an insufficient
source of entropy and a non-cryptographically secure pseudo-random
number generator.
By default, all newly constructed WebSocket streams will use a
uniquely seeded secure PRNG (ChaCha20 in counter mode). As this may
result in increased CPU resource consumption, the function
websocket::stream::secure_prng() may be used to select a faster but
less secure PRNG, for the case where the caller knows that the secure
generator is not necessary.
On some systems, std::random_device may produce insufficient entropy
to securely seed the PRNG. As this condition cannot be detected by
Beast, callers may use the function websocket::seed_prng() called
once at startup to provide at least 256 bits of entropy which will
be used to uniquely seed all subsequent PRNGs.
2018-07-08 15:20:05 -07:00
Vinnie Falco
68727b3cfb
Fix array end calculation in utf8 assertion
2018-07-04 14:40:06 -07:00
Vinnie Falco
20eb6af42d
Tidy up Quick Reference
2018-07-04 14:35:59 -07:00
Vinnie Falco
1a008faf0a
Set version to 175
2018-07-03 10:16:52 -07:00
Vinnie Falco
9758e5d223
Fix initialization warning
2018-07-03 10:16:35 -07:00
Vinnie Falco
b7cc754b2a
Set version to 174
2018-06-29 10:06:17 -07:00
Vinnie Falco
e97d70d329
Update Release Notes
2018-06-29 10:05:55 -07:00
Vinnie Falco
436f6f96b1
Fix BodyReader constructor requirements doc
2018-06-18 11:09:50 -07:00
Vinnie Falco
37c90220d0
Fix Fields, FieldsWriter concept docs
2018-06-18 08:42:24 -07:00
Vinnie Falco
93c35524a6
Set version to 173
2018-06-09 21:12:09 -07:00
Vinnie Falco
6647e9ea56
Add experimental icy_stream Shoutcast stream filter:
...
fix #595 , fix #1151
This provides a stream filter which converts the ICY HTTP
response handshake at the beginning of a stream to HTTP/1.1.
2018-06-09 21:12:01 -07:00
Vinnie Falco
39b014263a
buffers_adapter improvements:
...
* Add value()
* Add value_type
* Add in-place constructor
2018-06-09 21:10:25 -07:00
Vinnie Falco
2c5ed4595a
Fix buffers_prefix iterator decrement
2018-06-09 13:01:30 -07:00
Vinnie Falco
bd3079f5b4
Fix buffers_adapter max_size
2018-06-09 13:01:30 -07:00
Vinnie Falco
da9bb07d12
Fix buffers_adapter iterator value type
2018-06-08 14:01:17 -07:00
Vinnie Falco
c9298f6522
Remove Autobahn testsuite doc note
2018-05-31 06:27:00 -07:00
Vinnie Falco
34e78cb900
Set version to 172
2018-05-30 17:05:34 -07:00
Vinnie Falco
5b1022d63e
Tidy up composed operation doc
...
fix #1141
2018-05-29 15:33:55 -07:00
Vinnie Falco
f5def127d8
Tidy up test::stream javadocs
2018-05-29 15:32:01 -07:00
Vinnie Falco
5b8eb1d87d
Fix http::parser constructor javadoc
2018-05-28 11:23:37 -07:00
Vinnie Falco
f948c9cbe5
Fix move-only arguments in bind_handler
2018-05-27 19:05:43 -07:00
Benjamin Buch
3d7f1e7303
Tidy up websocket stream javadocs:
...
Make clear text()/binary() option is different from got_text()/got_binary().
2018-05-19 07:54:27 -07:00
Vinnie Falco
ce2c63ac7a
Set version to 171
2018-05-18 17:26:15 -07:00
Vinnie Falco
0afb380f50
Fix unused variable warning
...
fix #1119
2018-05-18 17:25:56 -07:00
Vinnie Falco
6ea66fd89e
Remove spurious assert
...
fix #1099
2018-05-18 17:25:56 -07:00
Damian Jarek
86555b90ae
Add handler_ptr::has_value
...
This function returns `true` if the container holds a managed object.
Resolves : #1079
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com >
2018-05-18 17:25:56 -07:00
Vinnie Falco
344d957f42
Set version to 170
2018-05-08 14:08:41 -07:00
Arvid Norberg
478c19e863
Use the root certificate which matches the fingerprint:
...
fix #1121
https://www.geotrust.com/resources/root_certificates/certificates/GeoTrust_Global_CA.pem
2018-05-08 14:08:28 -07:00
Vinnie Falco
e5d6165282
Fix Jamfile
2018-05-06 19:57:25 -07:00
Vinnie Falco
24bbda7b0d
Add const and non-const overloads for message based http writes:
...
fix #1113
This solves a problem where the message-oriented synchronous
HTTP write algorithms do not support messages whose body
writer requires a non-const reference to the message in
order to construct.
In addition, the message-oriented async_write algorithm is
modified to support messages passed by const reference when
possible, based on the body writer attributes.
2018-05-06 19:57:25 -07:00
Vinnie Falco
07aead170a
Add is_mutable_body_writer metafunction
2018-05-04 19:34:05 -07:00
Vinnie Falco
416f84bc63
Remove deprecated Body reader and writer ctor signatures
2018-05-04 12:47:27 -07:00
Vinnie Falco
73bc28aaa2
Remove deprecated serializer::reader_impl()
2018-05-03 19:42:36 -07:00
Vinnie Falco
f48b978044
Use a shared string for example HTTP server doc roots
...
fix #1109
2018-05-03 14:18:33 -07:00
Vinnie Falco
a94efc8c92
Add test::stream to experimental
2018-05-02 08:32:09 -07:00
Vinnie Falco
e4c2ae6384
Add test::fail_count to experimental
2018-05-02 08:32:09 -07:00
Vinnie Falco
59f01a158b
Add test::error to experimental
2018-05-02 08:32:09 -07:00