Skip to content

Commit

Permalink
Remove unnecessary whitelist and listener port
Browse files Browse the repository at this point in the history
Signed-off-by: Irene Bandera <[email protected]>
  • Loading branch information
irenebm committed Sep 2, 2024
1 parent ce4eac6 commit a62ed36
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,6 @@ DiscoveryServerParticipant::reckon_participant_attributes_(
auto descriptor_tmp =
create_descriptor<eprosima::fastdds::rtps::UDPv4TransportDescriptor>(
configuration->whitelist);
// descriptor_tmp->interfaceWhiteList.push_back(address.ip());
descriptor = descriptor_tmp;
}

Expand All @@ -271,7 +270,6 @@ DiscoveryServerParticipant::reckon_participant_attributes_(
auto descriptor_tmp =
create_descriptor<eprosima::fastdds::rtps::UDPv6TransportDescriptor>(
configuration->whitelist);
// descriptor_tmp->interfaceWhiteList.push_back(address.ip());
descriptor = descriptor_tmp;
}

Expand All @@ -288,8 +286,6 @@ DiscoveryServerParticipant::reckon_participant_attributes_(
auto descriptor_tmp =
create_descriptor<eprosima::fastdds::rtps::TCPv4TransportDescriptor>(
configuration->whitelist);
descriptor_tmp->add_listener_port(0);
// descriptor_tmp->interfaceWhiteList.push_back(address.ip());

// Enable TLS
if (tls_config.is_active())
Expand All @@ -314,8 +310,6 @@ DiscoveryServerParticipant::reckon_participant_attributes_(
auto descriptor_tmp =
create_descriptor<eprosima::fastdds::rtps::TCPv6TransportDescriptor>(
configuration->whitelist);
// descriptor_tmp->add_listener_port(0);
descriptor_tmp->interfaceWhiteList.push_back(address.ip());

// Enable TLS
if (tls_config.is_active())
Expand Down

0 comments on commit a62ed36

Please sign in to comment.