From 42edc5ea3d4284ed39cb21e9be20028e682af6c7 Mon Sep 17 00:00:00 2001 From: EduPonz Date: Wed, 6 Mar 2024 09:47:36 +0100 Subject: [PATCH] Refs #20492: Rename new TransportInterface::Open|CloseOutputChannel to Open|CloseOutputChannels Signed-off-by: EduPonz --- include/fastdds/rtps/transport/TransportInterface.h | 4 ++-- src/cpp/rtps/transport/TransportInterface.cpp | 4 ++-- versions.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/fastdds/rtps/transport/TransportInterface.h b/include/fastdds/rtps/transport/TransportInterface.h index ca547f373fa..517ac9c46fc 100644 --- a/include/fastdds/rtps/transport/TransportInterface.h +++ b/include/fastdds/rtps/transport/TransportInterface.h @@ -145,7 +145,7 @@ class RTPS_DllAPI TransportInterface * * @return true if the channel was correctly opened or if finding an already opened one. */ - virtual bool OpenOutputChannel( + virtual bool OpenOutputChannels( SendResourceList& sender_resource_list, const fastrtps::rtps::LocatorSelectorEntry& locator_selector_entry); @@ -155,7 +155,7 @@ class RTPS_DllAPI TransportInterface * @param sender_resource_list Participant's send resource list. * @param locator_selector_entry Locator selector entry with the remote entity locators. */ - virtual void CloseOutputChannel( + virtual void CloseOutputChannels( SendResourceList& sender_resource_list, const fastrtps::rtps::LocatorSelectorEntry& locator_selector_entry); diff --git a/src/cpp/rtps/transport/TransportInterface.cpp b/src/cpp/rtps/transport/TransportInterface.cpp index e535e8de2a0..a108682a999 100644 --- a/src/cpp/rtps/transport/TransportInterface.cpp +++ b/src/cpp/rtps/transport/TransportInterface.cpp @@ -22,7 +22,7 @@ namespace rtps { using LocatorSelectorEntry = fastrtps::rtps::LocatorSelectorEntry; -bool TransportInterface::OpenOutputChannel( +bool TransportInterface::OpenOutputChannels( SendResourceList& send_resource_list, const LocatorSelectorEntry& locator_selector_entry) { @@ -40,7 +40,7 @@ bool TransportInterface::OpenOutputChannel( return success; } -void TransportInterface::CloseOutputChannel( +void TransportInterface::CloseOutputChannels( SendResourceList& sender_resource_list, const fastrtps::rtps::LocatorSelectorEntry& locator_selector_entry) { diff --git a/versions.md b/versions.md index faf52340f18..f14306e3473 100644 --- a/versions.md +++ b/versions.md @@ -3,7 +3,7 @@ Forthcoming Migrate communication tests in `dds/communication` folder * Added authentication handshake properties. -* Added methods OpenOutputChannel and CloseOutputChannel to TransportInterface with LocatorSelectorEntry argument. +* Added methods OpenOutputChannels and CloseOutputChannels to TransportInterface with LocatorSelectorEntry argument. Version 2.13.0 --------------