Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions rclrs_tests/src/DEFAULT_FASTRTPS_PROFILES.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8" ?>

<!-- UDPv4 is more reliable for unit tests than shared memory, which is the default. Force the transport to be UDPv4. -->
<!-- For this file to be used, FastDDS needs to be the DDS provider. There is no rmw API to do this. -->
<!-- https://fast-dds.docs.eprosima.com/en/v2.13.2/fastdds/xml_configuration/xml_configuration.html -->
<!-- https://fast-dds.docs.eprosima.com/en/v2.13.2/fastdds/transport/udp/udp.html#enabling-udp-transport -->

<dds>
<profiles xmlns="http://www.eprosima.com/XMLSchemas/fastRTPS_Profiles">
<transport_descriptors>
<transport_descriptor>
<transport_id>udp_transport</transport_id>
<type>UDPv4</type>
<sendBufferSize>9216</sendBufferSize>
<receiveBufferSize>9216</receiveBufferSize>
<non_blocking_send>true</non_blocking_send>
</transport_descriptor>
</transport_descriptors>

<participant profile_name="UDPParticipant">
<rtps>
<userTransports>
<transport_id>udp_transport</transport_id>
</userTransports>
<useBuiltinTransports>false</useBuiltinTransports>
</rtps>
</participant>
</profiles>
<dds>