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

Legacy redundunt TypeLookupSettings removed from mock #5351

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -331,21 +331,6 @@ class DiscoverySettings
std::string static_edp_xml_config_ = "";
};

/**
* TypeLookupService settings.
*/
class TypeLookupSettings
{
public:

//!Indicates to use the TypeLookup Service client endpoints
bool use_client = false;

//!Indicates to use the TypeLookup Service server endpoints
bool use_server = false;

};

/**
* Class BuiltinAttributes, to define the behavior of the RTPSParticipant builtin protocols.
* @ingroup RTPS_ATTRIBUTES_MODULE
Expand All @@ -360,9 +345,6 @@ class BuiltinAttributes
//! Indicates to use the WriterLiveliness protocol.
bool use_WriterLivelinessProtocol = true;

//! TypeLookup Service settings
TypeLookupSettings typelookup_config;

//! Network Configuration
NetworkConfigSet_t network_configuration;

Expand Down Expand Up @@ -407,8 +389,6 @@ class BuiltinAttributes
{
return (this->discovery_config == b.discovery_config) &&
(this->use_WriterLivelinessProtocol == b.use_WriterLivelinessProtocol) &&
(typelookup_config.use_client == b.typelookup_config.use_client) &&
(typelookup_config.use_server == b.typelookup_config.use_server) &&
(this->network_configuration == b.network_configuration) &&
(this->metatrafficUnicastLocatorList == b.metatrafficUnicastLocatorList) &&
(this->metatrafficMulticastLocatorList == b.metatrafficMulticastLocatorList) &&
Expand Down
Loading