use of io.aklivity.zilla.runtime.binding.http.internal.codec.Http2RstStreamFW in project zilla by aklivity.
the class HttpServerFactory method decodeHttp2RstStream.
private int decodeHttp2RstStream(Http2Server server, long traceId, long authorization, long budgetId, DirectBuffer buffer, int offset, int limit) {
int progress = offset;
final Http2FrameInfoFW http2FrameInfo = http2FrameInfoRO.wrap(buffer, offset, limit);
final int streamId = http2FrameInfo.streamId();
final int length = http2FrameInfo.length();
Http2ErrorCode error = Http2ErrorCode.NO_ERROR;
if (streamId == 0) {
error = Http2ErrorCode.PROTOCOL_ERROR;
}
if (length != 4) {
error = Http2ErrorCode.FRAME_SIZE_ERROR;
}
if (error != Http2ErrorCode.NO_ERROR) {
server.onDecodeError(traceId, authorization, error);
server.decoder = decodeHttp2IgnoreAll;
} else {
if (server.applicationHeadersProcessed.size() < config.maxConcurrentApplicationHeaders()) {
final Http2RstStreamFW http2RstStream = http2RstStreamRO.wrap(buffer, offset, limit);
server.onDecodeRstStream(traceId, authorization, http2RstStream);
server.decoder = decodeHttp2FrameType;
progress = http2RstStream.limit();
}
}
return progress;
}
Aggregations