| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Factored out http server related code into zenhttp module since it feels out ↵ | Stefan Boberg | 2021-09-09 | 1 | -389/+0 |
| | | | | | of place in zencore | ||||
| * | Made HttpServer an abstract interface, and moved remaining implementation ↵ | Stefan Boberg | 2021-09-09 | 1 | -84/+13 |
| | | | | | specifics for http.sys into the dedicated cpp/h source files | ||||
| * | Moved http.sys server implementation into dedicated source files | Stefan Boberg | 2021-09-09 | 1 | -1250/+1 |
| | | |||||
| * | Restructuring HTTP server implementation to better (completely ↵ | Stefan Boberg | 2021-09-08 | 1 | -194/+265 |
| | | | | | asynchronously) deal with large requests. Also preparing to introduce new endpoint handlers and multiple server implementations (i.e besides http.sys) | ||||
| * | printf -> zencore logging | Stefan Boberg | 2021-09-08 | 1 | -1/+2 |
| | | |||||
| * | HTTP package handling updated (not final) | Stefan Boberg | 2021-09-06 | 1 | -27/+76 |
| | | |||||
| * | Initial implementation of CbPackage HTTP response writing | Stefan Boberg | 2021-09-02 | 1 | -39/+68 |
| | | |||||
| * | WriteResponse stub for CbPackage responses (awaiting decision on format with ↵ | Stefan Boberg | 2021-08-28 | 1 | -0/+9 |
| | | | | | compressed buffer support) | ||||
| * | Fixed Http CbPackage reading | Stefan Boberg | 2021-08-24 | 1 | -6/+4 |
| | | |||||
| * | Added HttpServerRequest::ReadPayloadPackage() | Stefan Boberg | 2021-08-23 | 1 | -0/+18 |
| | | |||||
| * | Restructured http server code in preparation for cross platform implementation | Stefan Boberg | 2021-08-20 | 1 | -47/+66 |
| | | |||||
| * | constinit -> const for now so that the code builds with the non-preview compiler | Stefan Boberg | 2021-05-25 | 1 | -6/+6 |
| | | |||||
| * | Added content type to IoBuffer payloads from http server | Stefan Boberg | 2021-05-23 | 1 | -3/+8 |
| | | | | | Also added some additional logic for flagging buffer immutability | ||||
| * | Added ZenContentType enum to iobuffer.h | Stefan Boberg | 2021-05-22 | 1 | -0/+5 |
| | | | | | | | - This allows us to carry the content type along with any IoBuffer instances - This replaces HttpContentType but HttpContentType remains an alias to reduce code churn - Added definition for YAML content | ||||
| * | Added HttpServerRequest::RequestContentType() | Stefan Boberg | 2021-05-19 | 1 | -3/+45 |
| | | |||||
| * | Added chunking to HttpSysServerRequest::ReadPayload to deal with large ↵ | Stefan Boberg | 2021-05-12 | 1 | -1/+5 |
| | | | | | payloads better | ||||
| * | Adding zenservice code | Stefan Boberg | 2021-05-11 | 1 | -0/+1459 |