zproto
zproto copied to clipboard
A protocol framework for ZeroMQ
Right now only list of strings is supported. Should we support list of other types? numbers and custom types?
how can i generate protocol code by given header file "xxxx_api.h". " xxxx_api.h" content may as follow: /*********************************************/ int XXXX_initialize(); /*********************************************/ int XXXX_terminate(); /*********************************************/ typedef struct { int state; int...
When 2 different xml defined messages each contain a 'msg' field, the code for only one of them ends up in the send handling for both. Here is a snip...
It might be useful if server's engine generated with zproto_server_c.gsl could call a user defined function when one or more configuration parameter changes. Now it calls only functions internal to...
I have problem with zproto. Suppose we have the sample definition of the protocol : ``` ``` Basically I have event "send request" connected with API function. This event/api method...