| 29 | |
| 30 | |
| 31 | struct IpPort { |
| 32 | std::string ip; |
| 33 | int port{-1}; |
| 34 | IpPort() = default; |
| 35 | IpPort(const std::string &ip2, int port2) : ip(ip2), port(port2) {} |
| 36 | }; |
| 37 | |
| 38 | // TODO: |
| 39 | //comm::RetCode GetAllIpPort(const int topic_id, const int group_id, |
nothing calls this directly
no outgoing calls
no test coverage detected