aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/winsock/xmake.lua
Commit message (Collapse)AuthorAgeFilesLines
* restructured transports SDK for easier UE integration (#470)Stefan Boberg2023-10-121-14/+0
|
* pluggable asio transport (#460)Stefan Boberg2023-10-111-7/+3
| | | | | | | | | 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
* experimental pluggable transport support (#436)Stefan Boberg2023-10-101-0/+18
this change adds a `--http=plugin` mode where we support pluggable transports. Currently this defaults to a barebones blocking winsock implementation but there is also support for dynamic loading of transport plugins, which will be further developed in the near future.