| 1726 | } |
| 1727 | |
| 1728 | static bool IsEncodableDnsName(const char* name) |
| 1729 | { |
| 1730 | uint8_t buffer[512]; |
| 1731 | uint32_t offset = 0; |
| 1732 | return WriteName(buffer, sizeof(buffer), &offset, name); |
| 1733 | } |
| 1734 | |
| 1735 | static int32_t FindBrowserHost(dmArray<BrowserHost>& hosts, const char* host) |
| 1736 | { |
no test coverage detected