On 14. 07. 15 12.30, Michael Ivanov wrote: > Hallo, > > I am receiving the qpid message is one process, but would like to actually > decode > it in a different process. I it possible to use proton to get the message in > the > unpacked binary form, then copy the buffer over to another process (eg. using > pipe) > and unpack it to actual pn_message_t there? > > Best regards,
If you use the engine and the reactor, the encoded form is available on PN_DELIVERY event Take a look at reactor-recv.c, you want to split it between lines 210 and 211 :) Bozzo --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
