aboutsummaryrefslogtreecommitdiff
path: root/src/zenhttp/transports/winsocktransport.cpp
Commit message (Collapse)AuthorAgeFilesLines
* add simple http client tests (#751)Dan Engelbrecht2026-02-121-1/+1
| | | * add simple http client tests and fix run loop of http server to not rely on application quit
* add EMode to WorkerTheadPool to avoid thread starvation (#492)Dan Engelbrecht2025-09-101-12/+14
| | | - Improvement: Add a new mode to worker thread pools to avoid starvation of workers which could cause long stalls due to other work begin queued up. UE-305498
* improved assert (#37)Dan Engelbrecht2024-04-041-1/+1
| | | | - Improvement: Add file and line to ASSERT exceptions - Improvement: Catch call stack when throwing assert exceptions and log/output call stack at important places to provide more context to caller
* HTTP plugin request debug logging (#587)Stefan Boberg2023-12-051-9/+23
| | | | | | * 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-90/+73
| | | | | | * 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
* pluggable asio transport (#460)Stefan Boberg2023-10-111-0/+367
added pluggable transport based on asio. This is in an experimental state and is not yet a replacement for httpasio even though that is the ultimate goal also moved plugin API header into dedicated part of the tree to clarify that it is meant to be usable in isolation, without any dependency on zencore et al moved transport implementations into dedicated source directory in zenhttp note that this adds code to the build but nothing should change at runtime since the instantiation of the new code is conditional and is inactive by default