| 423 | } |
| 424 | |
| 425 | sf::String decodeHostname(const std::string& hostname) |
| 426 | { |
| 427 | // TODO: Support proper Punycode conversion if there is a need for it |
| 428 | // https://datatracker.ietf.org/doc/html/rfc3492 |
| 429 | return {hostname}; |
| 430 | } |
| 431 | |
| 432 | } // namespace |
| 433 |