6.3. TCP Transport¶
TCP is a connection oriented transport, so the DomainParticipant must establish a TCP connection to the remote peer before sending data messages. Therefore, one of the communicating DomainParticipants (the one acting as server) must open a TCP port listening for incoming connections, and the other one (the one acting as client) must connect to this port.
Note
The server and client concepts are independent from the DDS concepts of Publisher, Subscriber, DataWriter, and DataReader. Also, these concepts are independent from the eProsima Discovery Server servers and clients (Discovery Server Settings). Any of them can act as a TCP Server or TCP Client when establishing the connection, and the DDS communication will work over this connection.
Warning
This documentation assumes the reader has basic knowledge of TCP/IP concepts, since terms like Time To Live (TTL), Cyclic Redundancy Check (CRC), Transport Layer Security (TLS), socket buffers, and port numbering are not explained in detail. However, it is possible to configure a basic TCP transport on Fast DDS without this knowledge.
6.3.1. TCPTransportDescriptor¶
eProsima Fast DDS implements TCP transport for both TCPv4 and TCPv6.
Each of these transports is independent from the other, and has its own TransportDescriptorInterface
.
However, they share many of their features, and most of the TransportDescriptorInterface
data members are common.
The following table describes the common data members for both TCPv4 and TCPv6.
Member |
Data type |
Default |
Description |
---|---|---|---|
|
0 |
Size of the sending buffer of the socket (octets). |
|
|
0 |
Size of the receiving buffer of the socket (octets). |
|
|
Empty vector |
List of allowed interfaces See Interface Whitelist. |
|
|
1 |
Time to live, in number of hops. |
|
|
Empty vector |
List of ports to listen as server. |
|
|
5000 |
Frequency of RTCP keep alive requests (in ms). |
|
|
15000 |
Time since sending the last keep alive request to consider a connection as broken (in ms). |
|
|
100 |
Maximum number of logical ports to try during RTCP negotiation. |
|
|
20 |
Maximum number of logical ports per request to try during RTCP negotiation. |
|
|
2 |
Increment between logical ports to try during RTCP negotiation. |
|
|
|
Enables the TCP_NODELAY socket option. |
|
|
|
True to calculate and send CRC on message headers. |
|
|
|
True to check the CRC of incoming message headers. |
|
|
|
True to use TLS. See TLS over TCP. |
|
Configuration for TLS. See TLS over TCP. |
Note
If listening_ports
is left empty, the participant will not be able to receive incoming
connections but will be able to connect to other participants that have configured their listening ports.
6.3.1.1. TCPv4TransportDescriptor¶
The following table describes the data members that are exclusive for TCPv4TransportDescriptor
.
Member |
Data type |
Default |
Description |
---|---|---|---|
|
[0, 0, 0, 0] |
Configuration for WAN. See WAN or Internet Communication over TCPv4. |
Note
The kind
value for a TCPv4TransportDescriptor
is given by the value
LOCATOR_KIND_TCPv4
.
6.3.1.2. TCPv6TransportDescriptor¶
TCPv6TransportDescriptor
has no additional data members from the common ones described in
TCPTransportDescriptor.
Note
The kind
value for a TCPv6TransportDescriptor
is given by the value
LOCATOR_KIND_TCPv6
.
6.3.2. Enabling TCP Transport¶
To enable TCP transport in a DomainParticipant, you need to create an instance of TCPv4TransportDescriptor (for TCPv4) or TCPv6TransportDescriptor (for TCPv6), and add it to the user transport list of the DomainParticipant.
If you provide listening_ports
on the descriptor, the DomainParticipant will act
as TCP server, listening for incoming remote connections on the given ports.
The examples below show this procedure in both C++ code and XML file.
DomainParticipantQos qos;
// Create a descriptor for the new transport.
auto tcp_transport = std::make_shared<TCPv4TransportDescriptor>();
tcp_transport->sendBufferSize = 9216;
tcp_transport->receiveBufferSize = 9216;
tcp_transport->add_listener_port(5100);
tcp_transport->set_WAN_address("80.80.99.45");
// Link the Transport Layer to the Participant.
qos.transport().user_transports.push_back(tcp_transport);
// Avoid using the default transport
qos.transport().use_builtin_transports = false;
<?xml version="1.0" encoding="UTF-8" ?>
<profiles xmlns="http://www.eprosima.com/XMLSchemas/fastRTPS_Profiles">
<transport_descriptors>
<transport_descriptor>
<transport_id>tcp_transport</transport_id>
<type>TCPv4</type>
<sendBufferSize>9216</sendBufferSize>
<receiveBufferSize>9216</receiveBufferSize>
<listening_ports>
<port>5100</port>
</listening_ports>
<wan_addr>80.80.99.45</wan_addr>
</transport_descriptor>
</transport_descriptors>
<participant profile_name="TCPParticipant">
<rtps>
<userTransports>
<transport_id>tcp_transport</transport_id>
</userTransports>
<useBuiltinTransports>false</useBuiltinTransports>
</rtps>
</participant>
</profiles>
If you provide initialPeersList
to the DomainParticipant, it will act
as TCP client, trying to connect to the remote servers at the given addresses and ports.
The examples below show this procedure in both C++ code and XML file.
See Initial peers for more information about their configuration.
DomainParticipantQos qos;
// Disable the built-in Transport Layer.
qos.transport().use_builtin_transports = false;
// Create a descriptor for the new transport.
// Do not configure any listener port
auto tcp_transport = std::make_shared<TCPv4TransportDescriptor>();
qos.transport().user_transports.push_back(tcp_transport);
// Set initial peers.
Locator_t initial_peer_locator;
initial_peer_locator.kind = LOCATOR_KIND_TCPv4;
IPLocator::setIPv4(initial_peer_locator, "80.80.99.45");
initial_peer_locator.port = 5100;
qos.wire_protocol().builtin.initialPeersList.push_back(initial_peer_locator);
// Avoid using the default transport
qos.transport().use_builtin_transports = false;
<?xml version="1.0" encoding="UTF-8" ?>
<profiles xmlns="http://www.eprosima.com/XMLSchemas/fastRTPS_Profiles">
<transport_descriptors>
<transport_descriptor>
<transport_id>tcp2_transport</transport_id>
<type>TCPv4</type>
</transport_descriptor>
</transport_descriptors>
<participant profile_name="TCP2Participant">
<rtps>
<userTransports>
<transport_id>tcp2_transport</transport_id>
</userTransports>
<useBuiltinTransports>false</useBuiltinTransports>
<builtin>
<initialPeersList>
<locator>
<tcpv4>
<address>80.80.99.45</address>
<physical_port>5100</physical_port>
</tcpv4>
</locator>
</initialPeersList>
</builtin>
</rtps>
</participant>
</profiles>
HelloWorldExampleTCP shows how to use and configure a TCP transport.
6.3.3. WAN or Internet Communication over TCPv4¶
Fast DDS is able to connect through the Internet or other WAN networks when configured properly. To achieve this kind of scenarios, the involved network devices such as routers and firewalls must add the rules to allow the communication.
For example, imagine we have the scenario represented on the following figure:

A DomainParticipant acts as a TCP server listening on port
5100
and is connected to the WAN through a router with public IP80.80.99.45
.Another DomainParticipant acts as a TCP client and has configured the server’s IP address and port in its Initial peers list.
On the server side, the router must be configured to forward to the TCP server
all traffic incoming to port 5100
. Typically, a NAT routing of port 5100
to our
machine is enough. Any existing firewall should be configured as well.
In addition, to allow incoming connections through a WAN,
the TCPv4TransportDescriptor must indicate its public IP address
in the wan_addr
data member.
The following examples show how to configure the DomainParticipant both in C++ and XML.
DomainParticipantQos qos;
// Create a descriptor for the new transport.
auto tcp_transport = std::make_shared<TCPv4TransportDescriptor>();
tcp_transport->sendBufferSize = 9216;
tcp_transport->receiveBufferSize = 9216;
tcp_transport->add_listener_port(5100);
tcp_transport->set_WAN_address("80.80.99.45");
// Link the Transport Layer to the Participant.
qos.transport().user_transports.push_back(tcp_transport);
// Avoid using the default transport
qos.transport().use_builtin_transports = false;
<?xml version="1.0" encoding="UTF-8" ?>
<profiles xmlns="http://www.eprosima.com/XMLSchemas/fastRTPS_Profiles">
<transport_descriptors>
<transport_descriptor>
<transport_id>tcp_transport</transport_id>
<type>TCPv4</type>
<sendBufferSize>9216</sendBufferSize>
<receiveBufferSize>9216</receiveBufferSize>
<listening_ports>
<port>5100</port>
</listening_ports>
<wan_addr>80.80.99.45</wan_addr>
</transport_descriptor>
</transport_descriptors>
<participant profile_name="TCPParticipant">
<rtps>
<userTransports>
<transport_id>tcp_transport</transport_id>
</userTransports>
<useBuiltinTransports>false</useBuiltinTransports>
</rtps>
</participant>
</profiles>
On the client side, the DomainParticipant must be configured
with the public IP address and listening_ports
of the TCP server as
Initial peers.
DomainParticipantQos qos;
// Disable the built-in Transport Layer.
qos.transport().use_builtin_transports = false;
// Create a descriptor for the new transport.
// Do not configure any listener port
auto tcp_transport = std::make_shared<TCPv4TransportDescriptor>();
qos.transport().user_transports.push_back(tcp_transport);
// Set initial peers.
Locator_t initial_peer_locator;
initial_peer_locator.kind = LOCATOR_KIND_TCPv4;
IPLocator::setIPv4(initial_peer_locator, "80.80.99.45");
initial_peer_locator.port = 5100;
qos.wire_protocol().builtin.initialPeersList.push_back(initial_peer_locator);
// Avoid using the default transport
qos.transport().use_builtin_transports = false;
<?xml version="1.0" encoding="UTF-8" ?>
<profiles xmlns="http://www.eprosima.com/XMLSchemas/fastRTPS_Profiles">
<transport_descriptors>
<transport_descriptor>
<transport_id>tcp2_transport</transport_id>
<type>TCPv4</type>
</transport_descriptor>
</transport_descriptors>
<participant profile_name="TCP2Participant">
<rtps>
<userTransports>
<transport_id>tcp2_transport</transport_id>
</userTransports>
<useBuiltinTransports>false</useBuiltinTransports>
<builtin>
<initialPeersList>
<locator>
<tcpv4>
<address>80.80.99.45</address>
<physical_port>5100</physical_port>
</tcpv4>
</locator>
</initialPeersList>
</builtin>
</rtps>
</participant>
</profiles>
6.3.4. HelloWorldExampleTCP¶
A TCP version of helloworld example can be found in the HelloWorldExampleTCP folder. It shows a publisher and a subscriber that communicate through TCP. The publisher is configured as TCP server while the Subscriber is acting as TCP client.