| 273 | } |
| 274 | |
| 275 | void GroundTelemetry::add_external_ground_station_ip( |
| 276 | const openhd::ExternalDevice& ext_device) { |
| 277 | m_console->debug("add_external_ground_station_ip {}", ext_device.to_string()); |
| 278 | if (m_gcs_endpoint) { |
| 279 | m_gcs_endpoint->addAnotherDestIpAddress(ext_device.external_device_ip); |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | void GroundTelemetry::remove_external_ground_station_ip( |
| 284 | const openhd::ExternalDevice& ext_device) { |
nothing calls this directly
no test coverage detected