| 227 | } |
| 228 | |
| 229 | void purge_cache(actor_system& sys, const std::string& host, uint16_t port) { |
| 230 | auto mm_hdl = actor_cast<actor>(sys.middleman().actor_handle()); |
| 231 | anon_mail(delete_atom_v, host, port).send(mm_hdl); |
| 232 | } |
| 233 | |
| 234 | int client(actor_system& sys, std::string_view mode, const std::string& host, |
| 235 | uint16_t port) { |
no test coverage detected