aboutsummaryrefslogtreecommitdiff
path: root/src/zenhttp/servers/httpmulti.h
Commit message (Collapse)AuthorAgeFilesLines
* HttpService/Frontend improvements (#782)Stefan Boberg2026-02-251-6/+7
| | | | | | | - zenhttp: added `GetServiceUri()`/`GetExternalHost()` - enables code to quickly generate an externally reachable URI for a given service - frontend: improved Uri handling (better defaults) - added support for 404 page (to make it easier to find a good URL)
* add IHttpRequestFilter to allow server implementation to filter/reject ↵Dan Engelbrecht2026-02-131-0/+1
| | | | | requests (#753) * add IHttpRequestFilter to allow server implementation to filter/reject requests
* HTTP server API changes for improved extensibility (#684)Stefan Boberg2025-12-111-5/+5
| | | | * refactored `HttpServer` so all subclass member functions are proctected, to make it easier to extend base functionality * added API service, can be used to enumerate registered endpoints (at `/api`). Currently only very basic information is provided
* HTTP plugin request debug logging (#587)Stefan Boberg2023-12-051-1/+1
| | | | | | * added log level control/query to LoggerRef * added debug logging to http plugin implementation * added GetDebugName() to transport plugin interfaces * added debug name to log output
* support for multiple http servers (#473)Stefan Boberg2023-10-131-0/+32
* added support for having multiple http servers active in one session * added configuration API to pluggable transports * removed pimpl pattern from some pluggable transports implementations