aboutsummaryrefslogtreecommitdiff
path: root/src/zenhttp/transports/dlltransport.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add base port getter and set the dll directory for plugin dependencies (#692)Tomasz Obrębski2025-12-191-5/+9
| | | | | | | * Add base port getter and set the dll directory for plugin dependencies * Use UTF8 for dll paths * Rename BasePort to m_BasePort for consistency
* Make plugin loading errors non fatal (#364)Dmytro Ivanov2025-04-231-12/+13
| | | | make plugin loading errors non fatal
* review fixesDmytro Ivanov2025-04-221-1/+1
|
* Added config, versioning and logging for pluginsDmytro Ivanov2025-04-221-11/+70
|
* HTTP plugin request debug logging (#587)Stefan Boberg2023-12-051-69/+13
| | | | | | * 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
* added missing includes (#504)Stefan Boberg2023-10-271-0/+5
| | | | | this change adds some includes to files which "inherit" includes from elsewhere this was exposed on another branch when removing some heavy dependencies from central headers
* support for multiple http servers (#473)Stefan Boberg2023-10-131-61/+54
| | | | | | * 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/+250
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