Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2014-06-19 13:32:27 +0000
committerGreg Wilkins2014-06-19 13:32:27 +0000
commitc0629b6e04f4182dade9e7f4e70205ffff13961e (patch)
tree90ddd69f4edd9f44d617c97db76e3048194d97ff
parent9acf971cc17fc593ebfff0334a3c6f691992b95d (diff)
downloadorg.eclipse.jetty.project-c0629b6e04f4182dade9e7f4e70205ffff13961e.tar.gz
org.eclipse.jetty.project-c0629b6e04f4182dade9e7f4e70205ffff13961e.tar.xz
org.eclipse.jetty.project-c0629b6e04f4182dade9e7f4e70205ffff13961e.zip
encoding debug
-rw-r--r--jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackEncoder.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackEncoder.java b/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackEncoder.java
index 8f6574cfa4..1ba7ae3adf 100644
--- a/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackEncoder.java
+++ b/jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackEncoder.java
@@ -209,6 +209,7 @@ public class HpackEncoder
{
// entries like :status: 200 and :method: GET are worthwhile putting into ref set.
// as they are likely to be repeated.
+ encoding="StaticIndexed";
int index=_context.index(entry);
buffer.put((byte)0x80);
NBitInteger.encode(buffer,7,index);

Back to the top