handleHttp3MaxPushIdFrame() — netty Function Reference
Architecture documentation for the handleHttp3MaxPushIdFrame() function in Http3ControlStreamInboundHandler.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 67c08639_8a9a_85b2_08bb_7f127dc08474["handleHttp3MaxPushIdFrame()"] 482a62ae_e5d4_afc5_e7a7_ded7c1b1758a["Http3ControlStreamInboundHandler"] 67c08639_8a9a_85b2_08bb_7f127dc08474 -->|defined in| 482a62ae_e5d4_afc5_e7a7_ded7c1b1758a e1f1a7ae_5b21_5e0c_4d99_5ac309dfe1d9["channelRead()"] e1f1a7ae_5b21_5e0c_4d99_5ac309dfe1d9 -->|calls| 67c08639_8a9a_85b2_08bb_7f127dc08474 bdb44f5b_93a9_3f66_dff0_5b4f9abcd0ea["forwardControlFrames()"] 67c08639_8a9a_85b2_08bb_7f127dc08474 -->|calls| bdb44f5b_93a9_3f66_dff0_5b4f9abcd0ea style 67c08639_8a9a_85b2_08bb_7f127dc08474 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http3/src/main/java/io/netty/handler/codec/http3/Http3ControlStreamInboundHandler.java lines 177–190
private boolean handleHttp3MaxPushIdFrame(ChannelHandlerContext ctx, Http3MaxPushIdFrame frame) {
long id = frame.id();
if (!server) {
connectionError(ctx, H3_FRAME_UNEXPECTED, "MAX_PUSH_ID received by client.",
forwardControlFrames());
return false;
}
if (receivedMaxPushId != null && id < receivedMaxPushId) {
connectionError(ctx, H3_ID_ERROR, "MAX_PUSH_ID reduced limit.", forwardControlFrames());
return false;
}
receivedMaxPushId = id;
return true;
}
Domain
Subdomains
Defined In
Calls
Called By
Source
Frequently Asked Questions
What does handleHttp3MaxPushIdFrame() do?
handleHttp3MaxPushIdFrame() is a function in the netty codebase, defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3ControlStreamInboundHandler.java.
Where is handleHttp3MaxPushIdFrame() defined?
handleHttp3MaxPushIdFrame() is defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3ControlStreamInboundHandler.java at line 177.
What does handleHttp3MaxPushIdFrame() call?
handleHttp3MaxPushIdFrame() calls 1 function(s): forwardControlFrames.
What calls handleHttp3MaxPushIdFrame()?
handleHttp3MaxPushIdFrame() is called by 1 function(s): channelRead.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free