Skip to content

Commit

Permalink
Refs #20492: Rename new TransportInterface::Open|CloseOutputChannel t…
Browse files Browse the repository at this point in the history
…o Open|CloseOutputChannels

Signed-off-by: EduPonz <eduardoponz@eprosima.com>
  • Loading branch information
EduPonz committed Mar 6, 2024
1 parent e4e2ca5 commit 42edc5e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions include/fastdds/rtps/transport/TransportInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand All @@ -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);

Expand Down
4 changes: 2 additions & 2 deletions src/cpp/rtps/transport/TransportInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand All @@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
--------------
Expand Down

0 comments on commit 42edc5e

Please sign in to comment.