| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Handle HTTP port collisions when initializing server (#40) | zousar | 2022-01-27 | 1 | -2/+2 |
| | | |||||
| * | Format fix. | Per Larsson | 2021-12-09 | 1 | -2/+2 |
| | | |||||
| * | Address review feedback and fix issue when deploying. | Zousar Shaker | 2021-11-29 | 1 | -1/+1 |
| | | |||||
| * | Allow http.sys mode to operate in local-only mode for non-admin users. | Zousar Shaker | 2021-11-29 | 1 | -10/+10 |
| | | |||||
| * | Support for asynchronous HTTP response processing (#19) | Stefan Boberg | 2021-10-06 | 1 | -7/+14 |
| | | | | | | | | | This change introduces WriteResponseAsync which can be used to move potentially slow request handler code (like upstream lookups) off the I/O service thread to ensure we are always able to serve as many HTTP requests as possible. The current implementation defaults to 16 async worker threads and there is currently no back-pressure. - Added RequestStats - Metrics for network requests. Aggregates tracking of duration, payload sizes into a single class for ease of use - Added some metrics on upstream communication Co-authored-by: Per Larsson <[email protected]> | ||||
| * | httpsys: remove atl #include which is no longer needed | Stefan Boberg | 2021-09-27 | 1 | -1/+0 |
| | | |||||
| * | httpsys: Some logging improvements | Stefan Boberg | 2021-09-26 | 1 | -2/+11 |
| | | |||||
| * | Eliminated HttpServerException and related classes | Stefan Boberg | 2021-09-12 | 1 | -7/+0 |
| | | |||||
| * | Some error handling improvements in zenhttp | Stefan Boberg | 2021-09-12 | 1 | -0/+7 |
| | | | | | Primarily replaces some exception usage with std::error_code | ||||
| * | Comment fixes, changed thread count args to unsigned | Stefan Boberg | 2021-09-11 | 1 | -1/+1 |
| | | |||||
| * | Improved error reporting, tweaked request buffer size and added explicit ↵ | Stefan Boberg | 2021-09-10 | 1 | -0/+2 |
| | | | | | cleanup of http API resources | ||||
| * | Refactored HTTP request handling to scale better | Stefan Boberg | 2021-09-10 | 1 | -1/+1 |
| | | | | | | | The new logic simply reads the whole payload up front before dispatching to the endpoint handler. This increases concurrency as fewer threads will be blocked waiting for payloads Similar logic will be added for compact binary package negotiation and ultimately we want to support streaming payloads to a staging directory on disk rather than keeping them all in memory | ||||
| * | clang-format | Stefan Boberg | 2021-09-09 | 1 | -1/+3 |
| | | |||||
| * | Added compile time logic to toggle http.sys / null http implementation on/off | Stefan Boberg | 2021-09-09 | 1 | -5/+15 |
| | | |||||
| * | Factored out http server related code into zenhttp module since it feels out ↵ | Stefan Boberg | 2021-09-09 | 1 | -0/+61 |
| of place in zencore | |||||