Skip to content

Commit

Permalink
Refs #20262: Resolve conflicts
Browse files Browse the repository at this point in the history
Signed-off-by: Jesus Perez <jesusperez@eprosima.com>
  • Loading branch information
jepemi committed Feb 23, 2024
1 parent 6738dd8 commit 55a8a44
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions src/cpp/rtps/transport/TCPTransportInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1289,17 +1289,11 @@ void TCPTransportInterface::SocketAccepted(
channel->thread(std::thread(&TCPTransportInterface::perform_listen_operation, this,
channel_weak_ptr, rtcp_manager_weak_ptr));

<<<<<<< HEAD
logInfo(RTCP, " Accepted connection (local: " << IPLocator::to_string(locator)
<< ", remote: " << channel->remote_endpoint().address()
<< ":" << channel->remote_endpoint().port() << ")");
=======
EPROSIMA_LOG_INFO(RTCP, "Accepted connection (local: "
logInfo(RTCP, "Accepted connection (local: "
<< channel->local_endpoint().address() << ":"
<< channel->local_endpoint().port() << "), remote: "
<< channel->remote_endpoint().address() << ":"
<< channel->remote_endpoint().port() << ")");
>>>>>>> 36f7f57b0 (Fix wrong log info messages on TCP (#4258))
}
else
{
Expand Down Expand Up @@ -1343,18 +1337,11 @@ void TCPTransportInterface::SecureSocketAccepted(
secure_channel->thread(std::thread(&TCPTransportInterface::perform_listen_operation, this,
channel_weak_ptr, rtcp_manager_weak_ptr));

<<<<<<< HEAD
logInfo(RTCP, " Accepted connection (local: " << IPLocator::to_string(locator)
<< ", remote: " << socket->lowest_layer().remote_endpoint().address()
<< ":" << socket->lowest_layer().remote_endpoint().port() <<
")");
=======
EPROSIMA_LOG_INFO(RTCP, " Accepted connection (local: "
logInfo(RTCP, " Accepted connection (local: "
<< socket->lowest_layer().local_endpoint().address() << ":"
<< socket->lowest_layer().local_endpoint().port() << "), remote: "
<< socket->lowest_layer().remote_endpoint().address() << ":"
<< socket->lowest_layer().remote_endpoint().port() << ")");
>>>>>>> 36f7f57b0 (Fix wrong log info messages on TCP (#4258))
}
else
{
Expand Down

0 comments on commit 55a8a44

Please sign in to comment.