We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfffb11 commit 3d657a9Copy full SHA for 3d657a9
okhttp/src/main/kotlin/okhttp3/internal/idn/Punycode.kt
@@ -25,10 +25,11 @@ import okio.ByteString.Companion.encodeUtf8
25
* This class contains a Kotlin implementation of the pseudocode specified by RFC 3492. It includes
26
* direct translation of the pseudocode presented there.
27
*
28
- * Partner this class with [Stringprep] to implement IDNA [RFC 3490].
+ * Partner this class with [UTS #46] to implement IDNA2008 [RFC 5890] like most browsers do.
29
30
- * [RFC 3490]: https://datatracker.ietf.org/doc/html/rfc3490
31
* [RFC 3492]: https://datatracker.ietf.org/doc/html/rfc3492
+ * [RFC 5890]: https://datatracker.ietf.org/doc/html/rfc5890
32
+ * [UTS #46]: https://www.unicode.org/reports/tr46/
33
*/
34
object Punycode {
35
val PREFIX_STRING = "xn--"
0 commit comments