Commit Graph

1003 Commits

Author SHA1 Message Date
Vinnie Falco 4ee5fa903e Set version to 1.0.0-b25 2017-02-01 20:05:40 -05:00
Vinnie Falco 229d3909a8 Update README.md for CppCast 2017 2017-02-01 20:05:40 -05:00
Vinnie Falco c3e3a55bd2 Fix deflate setup bug 2017-02-01 20:05:39 -05:00
Vinnie Falco 439a224e1d WebSocket server examples and test tidying:
fix #238, fix #165

* Tidy up WebSocket echo servers
* Add WebSocket echo servers to examples
2017-02-01 20:05:39 -05:00
Vinnie Falco 29565c8bd7 Remove unnecessary include
fix #242
2017-02-01 20:05:39 -05:00
Vinnie Falco caa3b39ec2 Fix 32-bit arm7 warnings
fix #232
2017-02-01 20:05:38 -05:00
Vinnie Falco 0474cc5df2 Better handler_ptr (API Change):
fix #242

* Add public constructors
* Add handler_ptr::empty()
* Add handler_ptr::element_type
* Remove make_handler_ptr free function
* Compiler error if element_type is an array type
* handler_ptr::get() returns nullptr if no object is owned
2017-02-01 20:05:38 -05:00
Vinnie Falco ca38657aab Fixes for websocket echo server:
* Decorator members are const
* Enable permessage-deflate extension
2017-01-27 20:15:31 -05:00
Vinnie Falco 797631c698 Set version to 1.0.0-b24 2017-01-27 19:48:03 -05:00
Vinnie Falco a4509684cc Add permessage-deflate WebSocket extension:
This implements the permessage-deflate WebSocket
extension as described in HyBi Working Group
draft-ietf-hybi-permessage-compression-28:
https://tools.ietf.org/html/draft-ietf-hybi-permessage-compression-28

This extension allows messages to be compressed using
the raw "deflate" algorithm described in RFC 1951,
"DEFLATE Compressed Data Format Specification version 1.3":
https://www.ietf.org/rfc/rfc1951.txt
2017-01-27 19:46:49 -05:00
Vinnie Falco 67e965e440 Make decorator copyable 2017-01-25 09:51:44 -05:00
Vinnie Falco 42899fc317 Add optional yield_to arguments 2017-01-25 09:51:31 -05:00
Edward Hennis 61aef03703 Simplify Travis package install specification 2017-01-25 09:51:18 -05:00
Miguel Portilla 9d0d7c990d bjam use clang on MACOSX 2017-01-25 09:51:04 -05:00
Edward Hennis c00cd37b8a Set version to 1.0.0-b23 2017-01-17 14:46:11 -05:00
Edward Hennis f662e36fc8 Travis CI improvements:
* Update boost package URL
* Retry Travis build script
* Respect Travis's $NUM_PROCESSORS limit
* Disable sudo
* Disable autobahn tests
* Show output from the wsecho server during autobahn
2017-01-17 14:45:40 -05:00
Vinnie Falco b05fa33402 Fix message constructor and special members
fix #196
2017-01-17 14:45:38 -05:00
Vinnie Falco b4722cc27d Add copy special members 2017-01-17 14:44:22 -05:00
Vinnie Falco 420d1c7525 Better logging in async echo server 2017-01-17 14:44:20 -05:00
Vinnie Falco 149e3a2c45 Add file and line number to thrown exceptions 2017-01-17 14:43:12 -05:00
Vinnie Falco 3e88b837db Tune websocket echo server for performance 2017-01-17 14:40:15 -05:00
Vinnie Falco 1ab7a2f04c Set version to 1.0.0-b22 2017-01-08 10:15:26 -05:00
Denis Andrejew 2eb4b0c6cd Fix code sample in websocket.qbk 2017-01-08 10:15:20 -05:00
Denis Andrejew 58802f4d6d Fix typos in design.qbk 2017-01-08 10:15:19 -05:00
Vinnie Falco 19dc4bb628 Update documentation examples
fix #222
2017-01-08 07:23:58 -05:00
Vinnie Falco 10dbc5b96a Disable Boost.Coroutine deprecation warning 2017-01-07 16:07:04 -05:00
Vinnie Falco 01c76c7b5c Fix websocket stream read documentation 2017-01-07 16:07:03 -05:00
Vinnie Falco d152c96f45 Update README.md example programs
fix #219
2017-01-07 16:07:03 -05:00
Vinnie Falco 995d86fcc3 Avoid copies in handler_alloc 2017-01-07 16:07:02 -05:00
Vinnie Falco 851cb62a50 Add handler helpers 2017-01-07 16:07:02 -05:00
Vinnie Falco 114175cd1f Implement asio dealloc-before-invoke guarantee:
fix #215

This change guarantees that temporary memory allocated
through the asio hooks by the Beast implementation is
deallocated before invoking the final handler when performing
composed operations.

The change is accomplished by replacing std::shared_ptr with
a thread-safe custom container handler_ptr to manage composed
operation state. The container tracks other instances which
manage the same object and resets them in a safe way before
invoking the final handler.

handler_ptr is provided as a public interface so that users of
this library can utilize the same idiom to write their own
composed operations.
2017-01-07 16:07:01 -05:00
Vinnie Falco 681db2efb8 Add missing include 2017-01-04 12:49:43 -05:00
Vinnie Falco 7db3c6eacf Fix broken Intellisense (MSVC)
Fix #213
2016-12-30 09:39:51 -05:00
Vinnie Falco 09c183d112 Set version to 1.0.0-b21 2016-12-16 10:59:15 -05:00
Vinnie Falco 1cb01fed1b Remove extraneous includes
fix #207
2016-12-16 10:59:05 -05:00
Vinnie Falco 62e65ed5e2 Set version to 1.0.0-b20 2016-11-15 13:09:24 -05:00
Miguel Portilla 45eaa8c8da Increase utf8 checker code coverage 2016-11-15 13:09:18 -05:00
Vinnie Falco 9ff1a27160 Add zlib module:
The zlib module is a port of ZLib's raw deflate
algorithm to header-only C++11.
2016-11-15 12:04:59 -05:00
Vinnie Falco a0a335972f Refactor HTTP identifier names (API Change):
fix #171

Several names and  HTTP identifiers are renamed to be
more consistent, self-explanatory, and concise:

* "Fields" is a collection of HTTP header fields (rfc7230 section 3.2)
* "Header" is the Start Line plus Fields. Another way to look at it is,
  the HTTP message minus the body.
* `basic_fields` replaces `basic_headers`
* `fields` replaces `headers`
* `Fields` replaces `Headers` in template parameter lists
* `header` replaces `message_headers`
* `header::fields` replaces `message_headers::fields`

The changes are cosmetic and do not affect run-time behavior.
2016-11-15 12:04:44 -05:00
Vinnie Falco 79be7f8b39 Set version to 1.0.0-b19 2016-11-12 12:37:35 -05:00
Vinnie Falco eda1120c63 Tidy up internal name 2016-11-12 11:27:59 -05:00
Vinnie Falco 4130ad4832 Better buffer_cat:
buffer_cat now determines if all of the buffer sequences in
the list of passed buffer sequences each have value types which
are convertible to mutable_buffer. The returned concatenated
sequence will be a MutableBufferSequence if all the passed
buffer sequences meet the requirements of MutableBufferSequence,
else the returned concatenated sequence will be a ConstBufferSequence.
2016-11-12 11:27:59 -05:00
Vinnie Falco f94f21db0b Fix consuming_buffers value_type (API Change):
This fixes a bug where instantiations of consuming_buffers with
buffer sequence types whose value_type is not const_buffer or
mutable_buffer can cause compilation errors.

The function consumed_buffers is removed.
2016-11-12 11:27:59 -05:00
Vinnie Falco 2c524b41ab prepared_buffers is private (API Change) 2016-11-12 11:27:58 -05:00
Vinnie Falco df2a1081c9 Fix prepare_buffers value_type:
This fixes a bug where calling prepare_buffers on a buffer
sequence whose value_type is not const_buffer or mutable_buffer
causes compilation errors.

The documentation is also tidied up.
2016-11-12 11:27:58 -05:00
Vinnie Falco a4af9d6769 Use boost::lexical_cast instead of std::to_string
fix #176
2016-11-12 11:27:57 -05:00
Vinnie Falco 62d670b94a Fix with_body example:
fix #177
2016-11-12 11:27:57 -05:00
Vinnie Falco a63bd84ee3 Increase code coverage 2016-11-12 11:27:57 -05:00
Vinnie Falco 84a6775dc1 Boost library min/max guidance:
fix #170
2016-11-12 11:27:56 -05:00
Vinnie Falco 02feea5128 Add read, async_read for message_headers:
fix #172, fix #173

This provides overloads of read and async_read to allow
reading message_headers objects.
2016-11-12 11:27:56 -05:00