| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | clang-format fixes | Stefan Boberg | 2022-06-10 | 1 | -1/+1 |
| | | |||||
| * | http: fixed extension parsing logic | Stefan Boberg | 2022-06-10 | 1 | -1/+1 |
| | | | | | the previous version did not remove the trailing dot from the extension-less URI | ||||
| * | Added some diagnostics to http.sys server to make it clear when we are ↵ | Stefan Boberg | 2022-02-02 | 1 | -0/+4 |
| | | | | | listening to localhost only | ||||
| * | Handle HTTP port collisions when initializing server (#40) | zousar | 2022-01-27 | 1 | -14/+41 |
| | | |||||
| * | Format fix. | Per Larsson | 2022-01-22 | 1 | -1/+2 |
| | | |||||
| * | Converted use of _format UDL to fmt::format | Martin Ridgers | 2022-01-10 | 1 | -3/+1 |
| | | |||||
| * | Merged main. | Per Larsson | 2021-12-14 | 1 | -3/+3 |
| |\ | |||||
| | * | Merged main | Martin Ridgers | 2021-12-08 | 1 | -28/+60 |
| | |\ | |||||
| | * \ | Merged main | Martin Ridgers | 2021-11-29 | 1 | -75/+4 |
| | |\ \ | |||||
| | * \ \ | Merged main | Martin Ridgers | 2021-10-20 | 1 | -2/+10 |
| | |\ \ \ | |||||
| | * \ \ \ | Merged main | Martin Ridgers | 2021-10-15 | 1 | -3/+8 |
| | |\ \ \ \ | |||||
| | * | | | | | Fixed httpsys.cpp WideToUtf8() link errors | Martin Ridgers | 2021-10-13 | 1 | -3/+3 |
| | | | | | | | |||||
| * | | | | | | Format fix. | Per Larsson | 2021-12-09 | 1 | -1/+1 |
| | |_|_|_|/ |/| | | | | |||||
| * | | | | | 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 | -28/+60 |
| | |_|_|/ |/| | | | |||||
| * | | | | Fix handling of packages/offers in asio mode to match http.sys mode. | Zousar Shaker | 2021-11-25 | 1 | -75/+4 |
| | |_|/ |/| | | |||||
| * | | | httpsys: Added automatic translation of 200 OK -> 204 NO CONTENT for case ↵ | Stefan Boberg | 2021-10-18 | 1 | -2/+10 |
| | |/ |/| | | | | | where there is no body (upset some clients) | ||||
| * | | clang-format | Stefan Boberg | 2021-10-15 | 1 | -2/+1 |
| | | | |||||
| * | | asio HTTP implementation (#23) | Stefan Boberg | 2021-10-14 | 1 | -3/+9 |
| |/ | | | asio-based HTTP implementation | ||||
| * | Added lofreq timer update to httpsys main loop | Stefan Boberg | 2021-10-11 | 1 | -0/+2 |
| | | |||||
| * | Support for asynchronous HTTP response processing (#19) | Stefan Boberg | 2021-10-06 | 1 | -52/+196 |
| | | | | | | | | | 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]> | ||||
| * | Merged from upstream | Stefan Boberg | 2021-10-05 | 1 | -9/+14 |
| | | |||||
| * | http: Moved logic for body suppression to a more central location | Stefan Boberg | 2021-10-03 | 1 | -0/+5 |
| | | | | | this should prevent some mistake-induced bugs hopefully | ||||
| * | http: Added support for specifying response content-type by means of ↵ | Stefan Boberg | 2021-10-03 | 1 | -3/+34 |
| | | | | | | | suffixes (.json/.yaml etc) If a suffix is present then we'll use that instead of any Accept: header value | ||||
| * | http: ReasonStringForHttpResultCode returns string_view to avoid strlen | Stefan Boberg | 2021-09-28 | 1 | -54/+51 |
| | | |||||
| * | clang-format | Stefan Boberg | 2021-09-27 | 1 | -3/+3 |
| | | |||||
| * | httpsys: Added HTTP_SEND_RESPONSE_FLAG_BUFFER_DATA to response calls which ↵ | Stefan Boberg | 2021-09-27 | 1 | -17/+33 |
| | | | | | | | should improve overall performance (yet to be confirmed) Also added custom Server: header | ||||
| * | httpsys: added `if constexpr` to silence compiler warning on Windows | Stefan Boberg | 2021-09-27 | 1 | -1/+1 |
| | | |||||
| * | Merged latest from main | Stefan Boberg | 2021-09-27 | 1 | -3/+19 |
| |\ | |||||
| | * | GetWindowsErrorAsString() -> GetSystemErrorAsString() | Stefan Boberg | 2021-09-27 | 1 | -2/+2 |
| | | | |||||
| | * | httpsys: Some logging improvements | Stefan Boberg | 2021-09-26 | 1 | -1/+14 |
| | | | |||||
| | * | Added some more context to http failure logging | Stefan Boberg | 2021-09-26 | 1 | -1/+4 |
| | | | |||||
| * | | Fixed httpsys Windows compilation error | Stefan Boberg | 2021-09-27 | 1 | -1/+1 |
| | | | |||||
| * | | Merge main | Martin Ridgers | 2021-09-22 | 1 | -2/+2 |
| |\| | |||||
| | * | Merge branch 'main' of https://github.com/EpicGames/zen | Stefan Boberg | 2021-09-21 | 1 | -1/+1 |
| | |\ | |||||
| | | * | Clang format fix. | Per Larsson | 2021-09-21 | 1 | -1/+1 |
| | | | | |||||
| | * | | Added human-friendly formatting of response send errors | Stefan Boberg | 2021-09-21 | 1 | -1/+1 |
| | |/ | |||||
| * | | Merged main into linux-mac | Martin Ridgers | 2021-09-21 | 1 | -18/+18 |
| |\| | |||||
| | * | Improved error handling in http.sys handler | Stefan Boberg | 2021-09-20 | 1 | -7/+6 |
| | | | | | | | | | Alsod fixed lifetime issue with initial request | ||||
| | * | clang-format again | Stefan Boberg | 2021-09-19 | 1 | -1/+1 |
| | | | |||||
| | * | zenserver can now run as a Windows service. We'll still need to improve how ↵ | Stefan Boberg | 2021-09-17 | 1 | -11/+12 |
| | | | | | | | | | data files are found as the current defaults are relative to the user directory which ends up being in the Windows folder when running as the local system user | ||||
| * | | Merge main into linux-mac | Martin Ridgers | 2021-09-16 | 1 | -2/+1 |
| |\| | |||||
| | * | Improved package serialization to allow round tripping | Stefan Boberg | 2021-09-16 | 1 | -2/+1 |
| | | | |||||
| * | | Merge from main | Martin Ridgers | 2021-09-16 | 1 | -12/+18 |
| |\| | |||||
| | * | Added some more trace-level logging | Stefan Boberg | 2021-09-15 | 1 | -1/+7 |
| | | | |||||
| | * | Made logging macros always append `sv` string_view literal suffix | Stefan Boberg | 2021-09-15 | 1 | -11/+11 |
| | | | | | | | | | Fixed up the few instances of explicit string_view arguments to make sure they compile properly with the new macros | ||||
| | * | Fixed up invalid fmt formatting strings | Stefan Boberg | 2021-09-15 | 1 | -5/+5 |
| | | | |||||
| * | | MakeWin32ErrorCode() -> MakeErrorCode() | Martin Ridgers | 2021-09-16 | 1 | -2/+2 |
| | | | |||||
| * | | GetWindowsErrorAsString() -> GetErrorAsString() | Martin Ridgers | 2021-09-16 | 1 | -1/+1 |
| |/ | |||||
| * | Changed logging implementation | Stefan Boberg | 2021-09-15 | 1 | -23/+23 |
| | | | | | | | * Code should no longer directly `#include spdlog/spdlog.h`, instead use `#include <zencore/logging.h>` * Instead of explicit calls to `spdlog::info(...)` and such please use the logging macros defined in `zencore/logging.h`. I.e `ZEN_INFO`, `ZEN_DEBUG`, `ZEN_TRACE`, `ZEN_ERROR`, `ZEN_CRITITCAL` * The macros will pick up the "most local" logger via a `Log()` call to retrieve a logger instance. To override the default logger in a class please implement your own `Log()` function | ||||