package io.netty.handler.codec.http2;

import io.netty.buffer.ByteBuf;

/* JADX INFO: loaded from: classes.dex */
public interface Http2HeadersDecoder {

    public interface Configuration {
        long maxHeaderListSize();

        void maxHeaderListSize(long j2, long j3);

        long maxHeaderListSizeGoAway();

        long maxHeaderTableSize();

        void maxHeaderTableSize(long j2);
    }

    Configuration configuration();

    Http2Headers decodeHeaders(int i2, ByteBuf byteBuf);
}
