Jaebum
Jaebum

Reputation: 1570

Zeromq : How to send message longer than 30 character from python client to c++ server

I made a C++ server and python client which sends message together.

It seems like there is no problem on sending very long messages to python client from server but python client cannot send or c++ server does not receive message longer than 30 characters.

I know there is 30 character limit on small messages but HOW to send long message?

Upvotes: 0

Views: 673

Answers (1)

Tom Willis
Tom Willis

Reputation: 5303

Well, I would assume the C++ has something equivalent, but at least in the python bindings there's a send_multipart and the corresponding recv_multipart which should probably be used by default unless you know for a fact that you will never receive or broadcast messages bigger than whatever the framesize is(probably never happens).

Upvotes: 1

Related Questions