bugfix: incorrect buffer size config

This commit is contained in:
Alexey Rybalchenko
2014-11-21 14:47:12 +01:00
committed by Florian Uhlig
parent e4e88ad1db
commit 65d91b8681
7 changed files with 8 additions and 6 deletions

View File

@@ -119,6 +119,7 @@ int main(int argc, char** argv)
client.SetProperty(FairMQExampleClient::OutputSocketType, "req", 0);
client.SetProperty(FairMQExampleClient::OutputSndBufSize, 10000, 0);
client.SetProperty(FairMQExampleClient::OutputRcvBufSize, 10000, 0);
client.SetProperty(FairMQExampleClient::OutputMethod, "connect", 0);
client.SetProperty(FairMQExampleClient::OutputAddress, "tcp://localhost:5005", 0);

View File

@@ -72,6 +72,7 @@ int main(int argc, char** argv)
server.SetProperty(FairMQExampleServer::InputSocketType, "rep", 0);
server.SetProperty(FairMQExampleServer::InputSndBufSize, 10000, 0);
server.SetProperty(FairMQExampleServer::InputRcvBufSize, 10000, 0);
server.SetProperty(FairMQExampleServer::InputMethod, "bind", 0);
server.SetProperty(FairMQExampleServer::InputAddress, "tcp://*:5005", 0);