Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is zmq tcp socket different from conventional tcp?

I am new to ZMQ. I find ZMQ socket implementation much simpler than winsock. But my doubt is that "can a client created using ZMQ TCP socket talk to conventional TCP server?" in other words Can my ZMQ client communicate with a TELNET server implemented using winsock?

like image 952
Kumar Avatar asked Nov 01 '22 18:11

Kumar


1 Answers

No it cannot. ZeroMQ is a messaging library and is not just a pure socket. It uses its own protocol called ZMTP and both endpoints are required to understand it.

like image 148
S.Richmond Avatar answered Nov 09 '22 13:11

S.Richmond