|
40 | 40 |
|
41 | 41 | #include <fastdds/config.hpp>
|
42 | 42 | #include <fastdds/dds/log/Log.hpp>
|
43 |
| -#include <fastdds/dds/log/Log.hpp> |
44 | 43 | #include <fastdds/rtps/attributes/PropertyPolicy.hpp>
|
45 | 44 | #include <fastdds/rtps/common/CDRMessage_t.hpp>
|
46 | 45 | #include <fastdds/rtps/common/LocatorSelector.hpp>
|
@@ -541,13 +540,13 @@ bool TCPTransportInterface::init(
|
541 | 540 |
|
542 | 541 | if (cfg_send_size > 0 && send_size != cfg_send_size)
|
543 | 542 | {
|
544 |
| - EPROSIMA_LOG_WARNING(TRANSPORT_TCP, "UDPTransport sendBufferSize could not be set to the desired value. " |
| 543 | + EPROSIMA_LOG_WARNING(TRANSPORT_TCP, "TCPTransport sendBufferSize could not be set to the desired value. " |
545 | 544 | << "Using " << send_size << " instead of " << cfg_send_size);
|
546 | 545 | }
|
547 | 546 |
|
548 | 547 | if (cfg_recv_size > 0 && recv_size != cfg_recv_size)
|
549 | 548 | {
|
550 |
| - EPROSIMA_LOG_WARNING(TRANSPORT_TCP, "UDPTransport receiveBufferSize could not be set to the desired value. " |
| 549 | + EPROSIMA_LOG_WARNING(TRANSPORT_TCP, "TCPTransport receiveBufferSize could not be set to the desired value. " |
551 | 550 | << "Using " << recv_size << " instead of " << cfg_recv_size);
|
552 | 551 | }
|
553 | 552 |
|
@@ -706,7 +705,7 @@ void TCPTransportInterface::SenderResourceHasBeenClosed(
|
706 | 705 | // Socket disconnection should always be done in the listening thread (or in the transport cleanup, when receiver resources have
|
707 | 706 | // already been destroyed and the listening thread had consequently finished).
|
708 | 707 | // An assert() clause finding the respective channel resource cannot be made since in LARGE DATA scenario, where the PDP discovery is done
|
709 |
| - // via UDP, a server's send resource can be created with without any associated channel resource until receiving a connection request from |
| 708 | + // via UDP, a server's send resource can be created without any associated channel resource until receiving a connection request from |
710 | 709 | // the client.
|
711 | 710 | // The send resource locator is invalidated to prevent further use of associated channel.
|
712 | 711 | LOCATOR_INVALID(locator);
|
|
0 commit comments