Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[19263 ] User configuration for SHM metatraffic #3753

Merged
merged 19 commits into from
Aug 2, 2023

Conversation

MiguelCompany
Copy link
Member

@MiguelCompany MiguelCompany commented Jul 27, 2023

Description

This is a rework of #3641.

In order to improve resilience when a participant dies unexpectedly, forcing discovery to use UDP by default.
The behavior can be configured using a new property fastdds.shm.enforce_metatraffic, which can take values none (default), unicast (default behavior before this PR), or all (would allow communication with a SHM only participant)

This PR changes the default behavior, but since it improves Fast DDS stability, and it has no ABI breaks, we will backport it to the supported branches.

@Mergifyio backport 2.11.x 2.10.x 2.6.x

Contributor Checklist

  • Commit messages follow the project guidelines.
  • The code follows the style guidelines of this project.
  • Tests that thoroughly check the new feature have been added/Regression tests checking the bug and its fix have been added; the added tests pass locally
  • Any new/modified methods have been properly documented using Doxygen.
  • Changes are ABI compatible.
  • Changes are API compatible.
  • New feature has been added to the versions.md file (if applicable).
  • New feature has been documented/Current behavior is correctly described in the documentation.
    Related documentation PR: [19263] User configuration for SHM metatraffic Fast-DDS-docs#535
  • Applicable backports have been included in the description.

Reviewer Checklist

  • The PR has a milestone assigned.
  • Check contributor checklist is correct.
  • Check CI results: changes do not issue any warning.
  • Check CI results: failing tests are unrelated with the changes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
…butes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
@MiguelCompany MiguelCompany added the doc-pending Issue or PR which is pending to be documented label Jul 27, 2023
@MiguelCompany MiguelCompany added this to the v2.12.0 milestone Jul 27, 2023
@MiguelCompany MiguelCompany changed the title User configuration for SHM metatraffic [19263 ] User configuration for SHM metatraffic Jul 27, 2023
Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
@MiguelCompany
Copy link
Member Author

@richiprosima Please test this

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
@MiguelCompany
Copy link
Member Author

@richiprosima Please test this

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
@MiguelCompany
Copy link
Member Author

@richiprosima Please test this

Copy link
Contributor

@JesusPoderoso JesusPoderoso left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If would be nice to have a set of communication tests that ckeck the three possibilities of this new feature (unicast, all, none [default])

src/cpp/rtps/network/NetworkFactory.cpp Outdated Show resolved Hide resolved
src/cpp/rtps/network/NetworkFactory.cpp Show resolved Hide resolved
test/unittest/rtps/network/NetworkFactoryTests.cpp Outdated Show resolved Hide resolved
Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
@MiguelCompany
Copy link
Member Author

MiguelCompany commented Jul 27, 2023

If would be nice to have a set of communication tests that ckeck the three possibilities of this new feature (unicast, all, none [default])

I will try to think of something. Perhaps some black-box testing would be possible.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
@JesusPoderoso
Copy link
Contributor

@richiprosima please test this

Copy link
Contributor

@JesusPoderoso JesusPoderoso left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM with test

fujitatomoya
fujitatomoya previously approved these changes Jul 28, 2023
Copy link
Contributor

@fujitatomoya fujitatomoya left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

adding configuration parameter to fallback not to use shm transport for metatraffic, and default behavior change makes sense.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
…bReader/PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
@MiguelCompany
Copy link
Member Author

@richiprosima Please test this

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
@MiguelCompany MiguelCompany removed the doc-pending Issue or PR which is pending to be documented label Aug 2, 2023
versions.md Show resolved Hide resolved
@EduPonz
Copy link

EduPonz commented Aug 2, 2023

@Mergifyio backport 2.11.x 2.10.x 2.6.x

@mergify
Copy link
Contributor

mergify bot commented Aug 2, 2023

backport 2.11.x 2.10.x 2.6.x

✅ Backports have been created

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
@MiguelCompany MiguelCompany added the skip-ci Automatically pass CI label Aug 2, 2023
@MiguelCompany MiguelCompany merged commit 25631e6 into master Aug 2, 2023
7 checks passed
@MiguelCompany MiguelCompany deleted the bugfix/shm/edp_via_udp branch August 2, 2023 11:13
mergify bot pushed a commit that referenced this pull request Aug 2, 2023
* Refs #18966. Forcing UDP for metatraffic.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Allowing metatraffic depends on flags.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. NetworkFactory constructor receives RTPSParticipantAttributes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Parsing property from participant attributes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Remove unused mp_ResourceSemaphore.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed NetworkFactoryTests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed TCPv6Tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed link errors on unit tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestions from code review.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Additional suggestions from code review.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Added possitive test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Added negative test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for avoid_builtin_multicast on PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for avoid_builtin_multicast on PubSubReader.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for max_multicast_locators_number on PubSubReader/PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Enable multicast discovery on new test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestions.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Add feature to versions.md.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestion.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

---------

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
(cherry picked from commit 25631e6)
mergify bot pushed a commit that referenced this pull request Aug 2, 2023
* Refs #18966. Forcing UDP for metatraffic.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Allowing metatraffic depends on flags.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. NetworkFactory constructor receives RTPSParticipantAttributes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Parsing property from participant attributes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Remove unused mp_ResourceSemaphore.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed NetworkFactoryTests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed TCPv6Tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed link errors on unit tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestions from code review.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Additional suggestions from code review.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Added possitive test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Added negative test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for avoid_builtin_multicast on PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for avoid_builtin_multicast on PubSubReader.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for max_multicast_locators_number on PubSubReader/PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Enable multicast discovery on new test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestions.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Add feature to versions.md.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestion.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

---------

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
(cherry picked from commit 25631e6)

# Conflicts:
#	test/blackbox/common/DDSBlackboxTestsTransportSHMUDP.cpp
#	test/unittest/rtps/network/NetworkFactoryTests.cpp
#	versions.md
mergify bot pushed a commit that referenced this pull request Aug 2, 2023
* Refs #18966. Forcing UDP for metatraffic.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Allowing metatraffic depends on flags.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. NetworkFactory constructor receives RTPSParticipantAttributes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Parsing property from participant attributes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Remove unused mp_ResourceSemaphore.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed NetworkFactoryTests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed TCPv6Tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed link errors on unit tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestions from code review.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Additional suggestions from code review.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Added possitive test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Added negative test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for avoid_builtin_multicast on PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for avoid_builtin_multicast on PubSubReader.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for max_multicast_locators_number on PubSubReader/PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Enable multicast discovery on new test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestions.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Add feature to versions.md.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestion.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

---------

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
(cherry picked from commit 25631e6)

# Conflicts:
#	versions.md
EduPonz pushed a commit that referenced this pull request Aug 4, 2023
* User configuration for SHM metatraffic (#3753)

* Refs #18966. Forcing UDP for metatraffic.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Allowing metatraffic depends on flags.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. NetworkFactory constructor receives RTPSParticipantAttributes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Parsing property from participant attributes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Remove unused mp_ResourceSemaphore.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed NetworkFactoryTests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed TCPv6Tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed link errors on unit tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestions from code review.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Additional suggestions from code review.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Added possitive test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Added negative test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for avoid_builtin_multicast on PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for avoid_builtin_multicast on PubSubReader.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for max_multicast_locators_number on PubSubReader/PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Enable multicast discovery on new test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestions.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Add feature to versions.md.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestion.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

---------

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
(cherry picked from commit 25631e6)

# Conflicts:
#	test/blackbox/common/DDSBlackboxTestsTransportSHMUDP.cpp
#	test/unittest/rtps/network/NetworkFactoryTests.cpp
#	versions.md

* Refs #19263. Change new log to old macro.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed conflicts.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Removed unrelated tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

---------

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
Co-authored-by: Miguel Company <miguelcompany@eprosima.com>
MiguelCompany added a commit that referenced this pull request Aug 7, 2023
* Refs #18966. Forcing UDP for metatraffic.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Allowing metatraffic depends on flags.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. NetworkFactory constructor receives RTPSParticipantAttributes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Parsing property from participant attributes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Remove unused mp_ResourceSemaphore.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed NetworkFactoryTests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed TCPv6Tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed link errors on unit tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestions from code review.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Additional suggestions from code review.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Added possitive test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Added negative test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for avoid_builtin_multicast on PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for avoid_builtin_multicast on PubSubReader.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for max_multicast_locators_number on PubSubReader/PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Enable multicast discovery on new test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestions.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Add feature to versions.md.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestion.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

---------

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
(cherry picked from commit 25631e6)

Co-authored-by: Miguel Company <miguelcompany@eprosima.com>
MiguelCompany added a commit that referenced this pull request Aug 8, 2023
* User configuration for SHM metatraffic (#3753)

* Refs #18966. Forcing UDP for metatraffic.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Allowing metatraffic depends on flags.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. NetworkFactory constructor receives RTPSParticipantAttributes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Parsing property from participant attributes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Remove unused mp_ResourceSemaphore.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed NetworkFactoryTests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed TCPv6Tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed link errors on unit tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestions from code review.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Additional suggestions from code review.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Added possitive test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Added negative test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for avoid_builtin_multicast on PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for avoid_builtin_multicast on PubSubReader.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for max_multicast_locators_number on PubSubReader/PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Enable multicast discovery on new test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestions.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Add feature to versions.md.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestion.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

---------

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
(cherry picked from commit 25631e6)

# Conflicts:
#	versions.md

* Fix conflicts

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

---------

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
Co-authored-by: Miguel Company <miguelcompany@eprosima.com>
jimwang118 pushed a commit to jimwang118/Fast-DDS that referenced this pull request Aug 22, 2023
* Refs #18966. Forcing UDP for metatraffic.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Allowing metatraffic depends on flags.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. NetworkFactory constructor receives RTPSParticipantAttributes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Parsing property from participant attributes.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19255. Remove unused mp_ResourceSemaphore.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed NetworkFactoryTests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed TCPv6Tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Fixed link errors on unit tests.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestions from code review.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Additional suggestions from code review.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Added possitive test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Added negative test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for avoid_builtin_multicast on PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for avoid_builtin_multicast on PubSubReader.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Configuration for max_multicast_locators_number on PubSubReader/PubSubWriter.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Enable multicast discovery on new test.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestions.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Add feature to versions.md.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

* Refs #19263. Apply suggestion.

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>

---------

Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
Signed-off-by: jimwang118 <wangzhijie05@beyondsoft.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
skip-ci Automatically pass CI
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants