cppzmq icon indicating copy to clipboard operation
cppzmq copied to clipboard

Header-only C++ binding for libzmq

Results 151 cppzmq issues
Sort by recently updated
recently updated
newest added

I am using cppzmq as dependency in my project via [FetchContent](https://cmake.org/cmake/help/latest/module/FetchContent.html), and I tried setting the `CPPZMQ_BUILD_TESTS` option to `OFF` in the following ways: ```cmake set(CPPZMQ_BUILD_TESTS OFF) # before and...

This option added ZMQ_BUILD_DRAFT_API to the compile definitions. However, this should be propagated by libzmq (see https://github.com/zeromq/libzmq/pull/4323 and https://github.com/zeromq/cppzmq/issues/477). Closes https://github.com/zeromq/cppzmq/issues/477.

**Short**: To build the provided unit tests it necessary to install at least `libzmq.so.5.2.5`. However, the package `libzmq3-dev` and the dependent package `libzmq5`, that can be installed using apt, only...

When I run `cmake` to configure `cppzmq` with the `-DENALBE_DRAFTS=ON` flag and then build and install the `cppzmq` target, the corresponding `cppzmqTargets.cmake` configuration file does not set the `-DZMQ_BUILD_DRAFT_API` compiler...

I'm interested in knowing about peer disconnect events for ZMQ pair/pair and req/rep sockets. Consider the following example code: ``` #include #include #include int main(int argc, char *argv[]) { zmq::context_t...

Hi i would like to send data from child process to parent process (at main thread). But at the parent process it's not receiving the message. I have tried to...

Would it be possible to add the normal file descriptor into poller_t? It is possible in the c api of zmq so this functionality seems to be missing in cppzmq....

``` cpp std::vector vMsg; // like this ``` my vs2019(win10 ) will report error ![image](https://user-images.githubusercontent.com/36342768/164953544-ca697d67-c9cd-42c7-8d68-b362814ea672.png) ``` cpp #ifdef ZMQ_CPP11 ZMQ_DEFINE_INTEGRAL_OPT(ZMQ_TYPE, socket_type, socket_type); #endif // ZMQ_CPP11 + E0757 ``` is it...

I am a beginner and I would like to build cppzmq on windows. So I build libzmq first: mkdir build cd build cmake .. gsudo make -j4 install But I...