Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for readLiteralHeaderWithIncrementalIndexingDynamicName (0.34 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt

                }
                b == 0x40 -> {
                  // 01000000
                  readLiteralHeaderWithIncrementalIndexingNewName()
                }
                b and 0x40 == 0x40 -> {
                  // 01NNNNNN
                  val index = readInt(b, PREFIX_6_BITS)
                  readLiteralHeaderWithIncrementalIndexingIndexedName(index - 1)
                }
                b and 0x20 == 0x20 -> {
                  // 001NNNNN
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 22.5K bytes
    - Viewed (1)
  2. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

        assertThat(hpackReader!!.headerCount).isEqualTo(0)
        assertThat(hpackReader!!.getAndResetHeaderList()).isEqualTo(
          headerEntries(":method", "GET"),
        )
      }
    
      @Test
      fun readLiteralHeaderWithIncrementalIndexingStaticName() {
        bytesIn.writeByte(0x7d) // == Literal indexed ==
        // Indexed name (idx = 60) -> "www-authenticate"
        bytesIn.writeByte(0x05) // Literal value (len = 5)
        bytesIn.writeUtf8("Basic")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 38.2K bytes
    - Viewed (0)
Back to top