uvw
uvw copied to clipboard
Header-only, event based, tiny and easy to use libuv wrapper in modern C++ - now available as also shared/static library!
When building with `-DFETCH_LIBUV=OFF`, `-DFIND_LIBUV=ON` and `-DBUILD_UVW_LIBS=ON` and a static build of libuv, the build fails with the following error: ``` -- Checking for module 'libuv>=1.44.1' -- Found libuv, version...
UVW v3
A breaking change to set a tipping point for a new version of uvw, an updated coding style (with a more _standard-ish_ snake style) and huge performance improvements during compilation....
Once a UDP socket is connected in libuv, you have to call send with a null address or else you get `UV_EISCONN` and nothing is sent. There seems to be...
Hi, I have attempted to prepare a [RPM Fedora package](https://github.com/pemensik/uvw/blob/fedora/uvw.spec) of this library. I enabled building of tests. My test build failed on few platforms: armv7hl s390x ppc64le. But it...
In stream like things, I need to collect several data events to make full packet. but it seems there are lack of interface I can give my buffer data(aka. char[])...
This PR adds initial support for the [meson](https://mesonbuild.com/) build system. Currently set up to work as a shared/static library, since that works best with meson's dependency system for libuv. This...
If I understand correctly, the `uv_fs_read()` / `uv_fs_write()` can be invoked unlimited times per event loop tick, unlike their socket counterparts. So is it possible to let the user supply...
The following error is generated when compiling on Windows 10 using clang++: `ninja: error: build.ninja:914: multiple rules generate _deps/libuv-build/uv.lib` From what I can see, the build.ninja file has the following...
Code to replicate: ``` int main(int argc, char *argv[]) { auto loop = uvw::loop::get_default(); auto threadWorker = [](std::shared_ptr d) { std::cout run(); } loop->run(); for (auto& threadHandle : threads) {...
Hi @skypjack, i don't know if it is worth mentioning (on the uvw repo), but i am working on a small collection of network protocol implementations on top of uvw:...