network programming - ZeroMQ Router Losing Messages -


the scenario follows:

  • 2 zmq_router sockets, , b;
  • a binds address , assigned identity;
  • b binds address, assigned identity , connects a;
  • they talk while, fine;
  • i intentionally close b socket;
  • the b socket reopened, rebound , reconnected using same parameters, assigned same identity previously;
  • b sends message a;
  • a not seeing message. am, however, noticing b's message in tcpdump output (tcpdump monitoring traffic on a's port).

this leads me believe zmq reason drops b's second message. can explain what's going on here?


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -