Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for domainMatchesIpAddress (0.1 sec)

  1. okhttp/src/test/java/okhttp3/CookieTest.kt

        assertThat(cookie.matches("http://www.☃.net/".toHttpUrl())).isTrue()
        assertThat(cookie.matches("http://www.xn--n3h.net/".toHttpUrl())).isTrue()
      }
    
      @Test fun domainMatchesIpAddress() {
        val urlWithIp = "http://123.45.234.56/".toHttpUrl()
        assertThat(parse(urlWithIp, "a=b; domain=234.56")).isNull()
        assertThat(parse(urlWithIp, "a=b; domain=123.45.234.56")!!.domain).isEqualTo("123.45.234.56")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top