Add REQ-REP zmq/nn sockets to FairMQ together with a little example program.

Also includes example of using boost::program_options.
This commit is contained in:
Alexey Rybalchenko
2014-10-10 18:36:44 +02:00
parent bd79420f93
commit 9317f06c10
11 changed files with 519 additions and 2 deletions

View File

@@ -179,6 +179,10 @@ int FairMQSocketNN::GetConstant(const string& constant)
return NN_PUSH;
if (constant == "pull")
return NN_PULL;
if (constant == "req")
return NN_REQ;
if (constant == "rep")
return NN_REP;
if (constant == "snd-hwm")
return NN_SNDBUF;
if (constant == "rcv-hwm")