aboutsummaryrefslogtreecommitdiff
path: root/zencore/stream.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Refactored websocket message.Per Larsson2022-02-211-17/+2
|
* Simple websocket client/server test.Per Larsson2022-02-181-4/+4
|
* Added websocket message parser.Per Larsson2022-02-161-0/+24
|
* Removed MemoryOutStream, MemoryInStreamStefan Boberg2021-09-281-29/+7
| | | | | | | | BinaryWriter/BinaryReader now implements memory buffer functionality which previously needed two chained instances of a Buffer/Reader. This was originally expected to be an abstraction for file and other stream access but this is not going to be useful so may as well collapse the functionality. This also eliminates the need for stack-aware ref-counting which is the real reason for wanting to get rid of this code. This was a very old experimental feature which turned out to be a bad idea. This also removes the /cas/batch endpoint
* Removing a bunch of no-longer-useful code from stream.h/cpp in preparation ↵Stefan Boberg2021-09-281-280/+0
| | | | for a greater purge
* It's not possible to compile out testsStefan Boberg2021-09-201-1/+6
| | | | Tests are now compiled in if `ZEN_WITH_TESTS=1`, and compiled out if not. Compiling tests out reduces the footprint of the resulting executables quite significantly.
* Wrong include for std::runtime_errorMartin Ridgers2021-09-151-1/+1
|
* Replaced use of "%ll?" format specifiers with PRI?64Martin Ridgers2021-09-141-2/+2
|
* Use sprintf() where _itoa_s() is not availableMartin Ridgers2021-09-141-0/+32
|
* Use runtime_exception() instead of exception() as the latter doesn't have a ↵Martin Ridgers2021-09-141-1/+1
| | | | constructor that takes a message according to the C++20 standard
* fixed signed/unsigned comparison in stream.cppStefan Boberg2021-09-031-1/+1
|
* Adding zenservice codeStefan Boberg2021-05-111-0/+307