-
Notifications
You must be signed in to change notification settings - Fork 783
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add IP string attribute to NetworkInterface and move implementation t…
…o cpp Signed-off-by: Juan Lopez Fernandez <[email protected]>
- Loading branch information
1 parent
102bef5
commit e325698
Showing
40 changed files
with
254 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Copyright 2024 Proyectos y Sistemas de Mantenimiento SL (eProsima). | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
/*! | ||
* @file NetworkInterface.cpp | ||
*/ | ||
|
||
#include <fastdds/rtps/transport/network/NetworkInterface.hpp> | ||
|
||
namespace eprosima { | ||
namespace fastdds { | ||
namespace rtps { | ||
|
||
NetworkInterface::NetworkInterface( | ||
const std::string& name) | ||
: name(name) | ||
{ | ||
} | ||
|
||
NetworkInterface::NetworkInterface( | ||
const std::string& device, | ||
const std::string& ip, | ||
const LocatorWithMask& locator) | ||
: device(device) | ||
, ip(ip) | ||
, locator(locator) | ||
{ | ||
} | ||
|
||
bool NetworkInterface::operator ==( | ||
const NetworkInterface& iface) const | ||
{ | ||
return (this->name == iface.name && | ||
this->device == iface.device && | ||
this->ip == iface.ip && | ||
this->locator == iface.locator); | ||
} | ||
|
||
} // namsepace rtps | ||
} // namespace fastdds | ||
} // namespace eprosima |
66 changes: 66 additions & 0 deletions
66
src/cpp/rtps/transport/network/NetworkInterfaceWithFilter.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
// Copyright 2024 Proyectos y Sistemas de Mantenimiento SL (eProsima). | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
/*! | ||
* @file NetworkInterfaceWithFilter.cpp | ||
*/ | ||
|
||
#include <fastdds/rtps/transport/network/NetworkInterfaceWithFilter.hpp> | ||
|
||
namespace eprosima { | ||
namespace fastdds { | ||
namespace rtps { | ||
|
||
NetworkInterfaceWithFilter::NetworkInterfaceWithFilter( | ||
const std::string& name, | ||
NetmaskFilterKind netmask_filter) | ||
: NetworkInterface(name) | ||
, netmask_filter(netmask_filter) | ||
{ | ||
} | ||
|
||
NetworkInterfaceWithFilter::NetworkInterfaceWithFilter( | ||
const std::string& name) | ||
: NetworkInterfaceWithFilter(name, NetmaskFilterKind::AUTO) | ||
{ | ||
} | ||
|
||
NetworkInterfaceWithFilter::NetworkInterfaceWithFilter( | ||
const std::string& device, | ||
const std::string& ip, | ||
const LocatorWithMask& locator, | ||
NetmaskFilterKind netmask_filter) | ||
: NetworkInterface(device, ip, locator) | ||
, netmask_filter(netmask_filter) | ||
{ | ||
} | ||
|
||
NetworkInterfaceWithFilter::NetworkInterfaceWithFilter( | ||
const std::string& device, | ||
const std::string& ip, | ||
const LocatorWithMask& locator) | ||
: NetworkInterfaceWithFilter(device, ip, locator, NetmaskFilterKind::AUTO) | ||
{ | ||
} | ||
|
||
bool NetworkInterfaceWithFilter::operator ==( | ||
const NetworkInterfaceWithFilter& iface) const | ||
{ | ||
return (this->netmask_filter == iface.netmask_filter && | ||
NetworkInterface::operator ==(iface)); | ||
} | ||
|
||
} // namsepace rtps | ||
} // namespace fastdds | ||
} // namespace eprosima |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.