The main thing is that the APIs for HTTP have totally changed, and they should be much easier to use now. There is no easy conversion guidance, although simple server side applications should convert withouttoomuch difficulty. Header files have changed for some things to make them easier as w...
extern size_t nng_msg_header_len(const nng_msg *); extern void * nng_msg_body(nng_msg *); @@ -317,16 +267,6 @@ extern void nng_msg_clear(nng_msg *); extern void nng_msg_header_clear(nng_msg *); extern void nng_msg_set_pipe(nng_msg *, nng_pipe); extern nng_pipe nng...
docs: add missing msg header prototypes Verified 0bb1ee9 docs: remove some converted content Verified f8a2aba View details gdamore merged commit f8a2aba into main Jan 1, 2025 1 check passed gdamore deleted the msg-docs branch January 1, 2025 19:32 Sign up for free to join this...
zmq_msg_close (&message); unique_ptr<unsigned char> msgp(new unsigned char[str.length() + 1]); if(msgp) { memcpy (msgp.get(), str.data(), str.size()); rc = nng_send(_pub, msgp.get(), str.length(), 0); } return rc; } int KnxObjectPool::publish(unsigned short gad, con...