nanomsg-examples icon indicating copy to clipboard operation
nanomsg-examples copied to clipboard

Examples of different message types in C with nanomsg

Results 10 nanomsg-examples issues
Sort by recently updated
recently updated
newest added

The code for Request/Reply in the blog (http://tim.dysinger.net/posts/2013-09-16-getting-started-with-nanomsg.html) is not the good one. It's the same code as the pipeline. On github it's the good one.

I have taking the examples and wrapped them up into individual files and scripts, as documented for other's convenience. Use them if you'd like. [src.zip](https://github.com/dysinger/nanomsg-examples/files/539380/src.zip)

I'm trying to compile pubsub.c in my Fedora box, but gcc complains with this: pubsub.c:2:18: fatal error: libc.h: No such file or directory. I solved this problem by replacing the...

If arguments are not provided, the examples will segfault (on mac, at least).

Hi. See here: https://github.com/Laeeth/d-nanomsg I hope it was okay to port your examples to D. I have included them in the repository for ease of use. Please let me know...

I think it's crucial to understand when to bind (one waiting on sth.) or when to connect (many awaiting sth.). You actually made a pipeline example where the (one) PULL...

Fixed crash in the "Pair (Two way radio)" example when it got started without arguments. Fixed size_t/int warning.