| 110 | } |
| 111 | |
| 112 | void NetworkConfigModifier::add_address(const OPENDDS_STRING& name, |
| 113 | bool can_multicast, |
| 114 | const ACE_INET_Addr& addr) |
| 115 | { |
| 116 | NetworkConfigMonitor::set(NetworkInterfaceAddress(name, can_multicast, NetworkAddress(addr))); |
| 117 | } |
| 118 | |
| 119 | void NetworkConfigModifier::remove_address(const OPENDDS_STRING& name, const ACE_INET_Addr& addr) |
| 120 | { |
nothing calls this directly
no test coverage detected