summaryrefslogtreecommitdiff
path: root/implementation/endpoints/src/tcp_server_endpoint_impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/endpoints/src/tcp_server_endpoint_impl.cpp')
-rw-r--r--implementation/endpoints/src/tcp_server_endpoint_impl.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/implementation/endpoints/src/tcp_server_endpoint_impl.cpp b/implementation/endpoints/src/tcp_server_endpoint_impl.cpp
index f3035ef..8e98fd0 100644
--- a/implementation/endpoints/src/tcp_server_endpoint_impl.cpp
+++ b/implementation/endpoints/src/tcp_server_endpoint_impl.cpp
@@ -121,12 +121,6 @@ bool tcp_server_endpoint_impl::is_established(std::shared_ptr<endpoint_definitio
return is_connected;
}
-tcp_server_endpoint_impl::endpoint_type
-tcp_server_endpoint_impl::get_remote() const {
- boost::system::error_code its_error;
- return current_->get_socket().remote_endpoint(its_error);
-}
-
bool tcp_server_endpoint_impl::get_remote_address(
boost::asio::ip::address &_address) const {
@@ -232,7 +226,8 @@ tcp_server_endpoint_impl::connection::get_socket() {
void tcp_server_endpoint_impl::connection::start() {
receive();
// Nagle algorithm off
- socket_.set_option(ip::tcp::no_delay(true));
+ boost::system::error_code ec;
+ socket_.set_option(ip::tcp::no_delay(true), ec);
}
void tcp_server_endpoint_impl::connection::receive() {