I'm refering to the 'A Request-Reply Broker' in the Zeromq documentation: http://zguide.zeromq.org/chapter:all
i'm getting the general gist of the app: it acts like an intermediary and routes messages from the client to the servervand back again.
What i'm not getting though is how it makes sure the correct response from a server is send to the correct client which originally made the request. I don't see anything in the code example which makes sure about this.
Now in the example they only send 1 message (hello) and 1 response (world), so even if messages are mixed up it doesn't matter, but i'm guessing that the testclient andserver are kept deliberately simple.
Any thought are welcome...