Commit Graph

1930 Commits

Author SHA1 Message Date
Vinnie Falco
0b68ed651b
Set version to 277 2019-11-09 03:02:57 -08:00
Vinnie Falco
dd64bf1c18 Update release notes 2019-11-09 03:02:29 -08:00
Vinnie Falco
718aef721a
Set version to 276 2019-11-02 08:30:31 -07:00
AeroStun
d895906bcc
Refactor zlib tests and fix typo:
close #1744

* Fixed typo in enum name
* Added missing zlib error enumerator
* Marked caveat in zlib impl to avoid future confusion
* Created Compressor/Decompressor abstractions in Beast.zlib tests
* Applied abstractions on Beast.zlib tests
* Workaround Travis-CI' 10min silence timeout
* Add test for Beast.zlib's need_dict error
* Avoid breaking user-code dependant on deprecated enumerator interface

Signed-off-by: AeroStun <24841307+AeroStun@users.noreply.github.com>
2019-11-02 08:29:30 -07:00
Cristian Morales Vega
26a156e300 Fix async_close error code when async_read times out
close #1754
2019-11-02 08:26:23 -07:00
Roel Standaert
dcc30bcc40 https_get example sends the Host header:
close #1751

If you try the https_get example with the Server header, servers will
respond with 400 Bad Request. This example works as it should when it
uses the Host header.
2019-11-02 08:26:06 -07:00
Vinnie Falco
bb85859e96
Set version to 275 2019-10-31 06:50:00 -07:00
Vinnie Falco
21137f2708 Disable broken tests 2019-10-31 06:49:55 -07:00
Vinnie Falco
32bbd38387 Support Concepts for completion token params 2019-10-31 06:47:22 -07:00
Vinnie Falco
9f468ec1c1 Use automatically deduced return types for all async operations:
C++14 or later is required to support completion tokens that use
per-operation return type deduction. For C++11, a completion
token's async_result specialisation must still provide the nested
typedef `return_type`.
2019-10-31 06:47:22 -07:00
Vinnie Falco
d64e5f718c Add basic_stream::rebind_executor 2019-10-31 06:26:12 -07:00
Vinnie Falco
7cc8759261 Async init-fns use the executor's default token 2019-10-31 05:47:05 -07:00
Vinnie Falco
2ccb110dc9
Set version to 274 2019-10-18 05:30:32 -07:00
Peter Jankuliak
1abe92f524 Fix leftovers in basic_parser corner case:
fix #1734, close #1736

buf_.get() has size `buf_len_`, but only `size` number of octets in that
buffer is valid.
2019-10-18 05:30:29 -07:00
Vinnie Falco
cee64b5223
Set version to 273 2019-10-15 15:48:51 -07:00
Vinnie Falco
087bcc4ef5 Use the executor type in basic_stream timer
fix #1589
2019-10-15 15:48:42 -07:00
Vinnie Falco
bafce23853 Squelch spurious websocket timer assert 2019-10-09 12:00:22 -07:00
Vinnie Falco
045dfeb47f
Set version to 272
close #1720
2019-10-07 12:49:20 -07:00
AeroStun
da3b5a664c Fixed null pointer ASAN error introduced in commit d41b7c23
Signed-off-by: AeroStun <24841307+AeroStun@users.noreply.github.com>
2019-10-07 12:47:15 -07:00
AeroStun
37f75773ef Added missing error handling in deflate stream test
Signed-off-by: AeroStun <24841307+AeroStun@users.noreply.github.com>
2019-10-07 12:46:39 -07:00
AeroStun
dbdf49e313 Added missing header inclusions in deflate stream test
Signed-off-by: AeroStun <24841307+AeroStun@users.noreply.github.com>
2019-10-07 12:46:39 -07:00
AeroStun
5984212e77 Silence integer narrowing in inflate stream tests
Signed-off-by: AeroStun <24841307+AeroStun@users.noreply.github.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
2ce0a10a01 Add a known string to the inflate matrix
This makes coverage slightly more stable coverage and covers some
additional lines.

Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
c76ef3bf31 Test flush after emitting a dist code
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
fd57b0a73d Test for match length exceeding lookahead in deflate stream
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
3d9ee6acee Add test for flush when literal buffer is full
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
962f01e1f0 Use memcpy to avoid putting one byte at a time when copying blocks
`memcpy` is likely to be faster than the naive method due to the
possibility of use of vector instructions and copying more than a byte
at a time.

Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
85ab7a3fd0 Add test for partial flush in deflate stream
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
01c200d2ef Add test checking for writes into a stream in finished state
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
ba42517897 Fix typo in inflate stream doc
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
d785666738 Fix nontrivial memeset initialization warning in zlib bench tests
GCC complains about initialization of a non-trivial object with memset,
`z_params` is non-trivial because of non-static data member initializer.

Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
d1ff4405aa Add test for flush::trees with uncompressed strategy
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
0b8c285bb7 Add test for flush::trees with fixed Huffman strategy
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
3b585f660c Add excess data inflate test
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
610a2681e4 Throw on invalid argument
This condition is a programmer error, so reporting it as a regular
error is confusing.

Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
11ee655f97 Expand deflate matrix to check for different memLevel values
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:39 -07:00
Damian Jarek
8ee65054a6 Add success test cases from zlib test suite
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:38 -07:00
Damian Jarek
b0aa3df714 Import more failure test cases from zlib test suite
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:38 -07:00
Damian Jarek
5937c06cd0 Add test for invalid inflate stream settings
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:38 -07:00
Damian Jarek
4be185eb2b Add test for invalid deflate stream settings
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:38 -07:00
Damian Jarek
84bf4c5362 Add failure test cases from zlib's inflate test suite
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-07 12:46:38 -07:00
Vinnie Falco
7dbb3bd417 Add BEAST_THROWS 2019-10-06 15:15:54 -07:00
Vinnie Falco
d6bc3da94c
Set version to 271
close #1721, close #1722
2019-10-06 08:06:28 -07:00
Damian Jarek
1401422557 Add configuration macros doc page
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-06 08:06:18 -07:00
Damian Jarek
651f2ce011 Add clang-9 to AZP CI build
Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-06 08:06:18 -07:00
Vinnie Falco
5521b91d8c Tidy up cmake files and examples 2019-10-06 08:04:22 -07:00
Damian Jarek
3eebf420f0 Add async-ssl-system-executor http client example
This example websocket client application uses the `system_executor` to show
how to use it with the I/O objects in ASIO and Beast.

Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-06 07:52:13 -07:00
Damian Jarek
0f5d1edcd8 Fix data race in websocket examples
When using `websocket::stream`, the user has to take care to initiate
async operations within the associated strand.

Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-06 07:52:13 -07:00
Damian Jarek
3817fb4c94 Fix data race in http server examples
When using `beast::tcp_stream`, the user must make sure that async operations
are initiated from within the strand associated with the stream.

Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-06 07:52:13 -07:00
Damian Jarek
9170a0daaa Add async-ssl-system-executor http client example
This example HTTP client application uses the `system_executor` to show
how to use it with the I/O objects in ASIO and Beast.

Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-10-06 07:52:13 -07:00