Skip to content

Commit ae3d283

Browse files
committed
Refs #20629: Rebase
Signed-off-by: cferreiragonz <carlosferreira@eprosima.com>
1 parent b54b788 commit ae3d283

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

src/cpp/rtps/RTPSDomain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ RTPSParticipant* RTPSDomainImpl::createParticipant(
223223
}
224224
else
225225
{
226-
if (PParam.builtin.discovery_config.discoveryProtocol == DiscoveryProtocol_t::BACKUP)
226+
if (PParam.builtin.discovery_config.discoveryProtocol == DiscoveryProtocol::BACKUP)
227227
{
228228
EPROSIMA_LOG_ERROR(RTPS_PARTICIPANT, "Specifying a GUID prefix is mandatory for BACKUP Discovery Servers.");
229229
return nullptr;

src/cpp/rtps/builtin/discovery/database/DiscoveryDataBase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ void DiscoveryDataBase::add_server(
6969
}
7070

7171
void DiscoveryDataBase::remove_server(
72-
fastrtps::rtps::GuidPrefix_t server)
72+
fastdds::rtps::GuidPrefix_t server)
7373
{
7474
std::lock_guard<std::recursive_mutex> guard(mutex_);
7575
if (servers_.erase(server) == 1)

src/cpp/rtps/builtin/discovery/database/DiscoveryDataBase.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ class DiscoveryDataBase
344344

345345
//! Remove a server from the list of remote servers
346346
void remove_server(
347-
fastrtps::rtps::GuidPrefix_t server);
347+
fastdds::rtps::GuidPrefix_t server);
348348

349349
// Removes all the changes whose original sender was entity_guid_prefix from writer_history
350350
void remove_related_alive_from_history_nts(

src/cpp/rtps/builtin/discovery/database/DiscoveryParticipantChangeData.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class DiscoveryParticipantChangeData
5757
}
5858

5959
DiscoveryParticipantChangeData(
60-
fastrtps::rtps::RemoteLocatorList metatraffic_locators,
60+
RemoteLocatorList metatraffic_locators,
6161
bool is_client,
6262
bool is_local,
6363
bool is_superclient)

src/cpp/rtps/builtin/discovery/participant/PDP.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ bool PDP::data_matches_with_prefix(
227227
}
228228

229229
std::string PDP::check_participant_type(
230-
const eprosima::fastrtps::ParameterPropertyList_t properties)
230+
const fastdds::dds::ParameterPropertyList_t properties)
231231
{
232232
auto participant_type = std::find_if(
233233
properties.begin(),

src/cpp/rtps/builtin/discovery/participant/PDP.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ class PDP : public fastdds::statistics::rtps::IProxyQueryable
579579
* @return a string indicating the participant type.
580580
*/
581581
std::string check_participant_type(
582-
const eprosima::fastrtps::ParameterPropertyList_t properties);
582+
const fastdds::dds::ParameterPropertyList_t properties);
583583

584584
/**
585585
* Gets the key of a participant proxy data.

src/cpp/rtps/builtin/discovery/participant/PDPServer.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,15 +293,15 @@ class PDPServer : public fastdds::rtps::PDP
293293
* It does however take temp_data_lock_
294294
*/
295295
void match_pdp_writer_nts_(
296-
const fastrtps::rtps::ParticipantProxyData& pdata);
296+
const fastdds::rtps::ParticipantProxyData& pdata);
297297

298298
/**
299299
* Manually match the local PDP writer with the PDP reader of a given partipant of type server.
300300
* The function is not thread safe (nts) in the sense that it does not take the PDP mutex.
301301
* It does however take temp_data_lock_
302302
*/
303303
void match_pdp_reader_nts_(
304-
const fastrtps::rtps::ParticipantProxyData& pdata);
304+
const fastdds::rtps::ParticipantProxyData& pdata);
305305

306306
/**
307307
* Release a change from the history of the PDP writer.

tools/fds/server.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ int fastdds_discovery_server(
193193
}
194194
else if (participantQos.wire_protocol().prefix == prefix_cero &&
195195
participantQos.wire_protocol().builtin.discovery_config.discoveryProtocol ==
196-
eprosima::fastrtps::rtps::DiscoveryProtocol::BACKUP)
196+
eprosima::fastdds::rtps::DiscoveryProtocol::BACKUP)
197197
{
198198
// Discovery protocol specified in XML is BACKUP, but no GUID was specified
199199
std::cout << "Specifying a GUID prefix is mandatory for BACKUP Discovery Servers." <<
@@ -233,7 +233,7 @@ int fastdds_discovery_server(
233233
pOp = options[BACKUP];
234234
if (nullptr != pOp)
235235
{
236-
fastrtps::rtps::GuidPrefix_t prefix_cero;
236+
fastdds::rtps::GuidPrefix_t prefix_cero;
237237
if (participantQos.wire_protocol().prefix == prefix_cero && server_id == -1)
238238
{
239239
// BACKUP argument used, but no GUID was specified either in the XML nor in the CLI

0 commit comments

Comments
 (0)