MCPcopy Index your code
hub / github.com/apache/tomcat / readUnknownFrame

Method readUnknownFrame

java/org/apache/coyote/http2/Http2Parser.java:588–598  ·  view source on GitHub ↗
(int streamId, int frameTypeId, int flags, int payloadSize, ByteBuffer buffer)

Source from the content-addressed store, hash-verified

586
587
588 protected void readUnknownFrame(int streamId, int frameTypeId, int flags, int payloadSize, ByteBuffer buffer)
589 throws IOException {
590 try {
591 swallowPayload(streamId, frameTypeId, payloadSize, false, buffer);
592 } catch (ConnectionException e) {
593 // Will never happen because swallowPayload() is called with isPadding set
594 // to false
595 } finally {
596 output.onSwallowedUnknownFrame(streamId, frameTypeId, flags, payloadSize);
597 }
598 }
599
600
601 /**

Callers 2

readFrameMethod · 0.95
completedMethod · 0.80

Calls 2

swallowPayloadMethod · 0.95

Tested by

no test coverage detected