| 6655 | |
| 6656 | |
| 6657 | const UCharBuffer* rem_port::findSpecificData(const PathName& type, const PathName& plugin) |
| 6658 | { |
| 6659 | for (unsigned i = 0; i < port_known_server_keys.getCount(); ++i) |
| 6660 | { |
| 6661 | //KnownServerKey |
| 6662 | auto& k = port_known_server_keys[i]; |
| 6663 | if (k.type != type) |
| 6664 | continue; |
| 6665 | auto* rc = k.findSpecificData(plugin); |
| 6666 | if (rc) |
| 6667 | return rc; |
| 6668 | } |
| 6669 | |
| 6670 | return nullptr; |
| 6671 | } |
| 6672 | |
| 6673 | |
| 6674 | void rem_port::addSpecificData(const PathName& type, const PathName& plugin, unsigned length, const void* data) |
no test coverage detected