Skip to content

Commit

Permalink
v0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
badaix committed Dec 23, 2015
1 parent a3dc6bb commit 6cffd2b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 0.3.2
VERSION = 0.3.4
TARGET = snapclient
SHELL = /bin/bash

Expand Down
2 changes: 1 addition & 1 deletion server/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 0.3.2
VERSION = 0.3.4
TARGET = snapserver
SHELL = /bin/bash

Expand Down
1 change: 1 addition & 0 deletions server/controlServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ void ControlServer::handleAccept(socket_ptr socket)
tv.tv_usec = 0;
setsockopt(socket->native(), SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv));
setsockopt(socket->native(), SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv));
// socket->set_option(boost::asio::ip::tcp::no_delay(false));
logS(kLogNotice) << "ControlServer::NewConnection: " << socket->remote_endpoint().address().to_string() << endl;
shared_ptr<ServerSession> session = make_shared<ServerSession>(this, socket);
{
Expand Down

0 comments on commit 6cffd2b

Please sign in to comment.