skipControlCharacters() — netty Function Reference
Architecture documentation for the skipControlCharacters() function in HttpPostMultipartRequestDecoder.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 59b6f7b4_1778_fb37_5bfa_e76f59f1834a["skipControlCharacters()"] d07408ef_0ab6_54bb_c64e_0b5b9a0aac25["HttpPostMultipartRequestDecoder"] 59b6f7b4_1778_fb37_5bfa_e76f59f1834a -->|defined in| d07408ef_0ab6_54bb_c64e_0b5b9a0aac25 44dc9a0e_9473_e766_e499_985b3abd1cad["InterfaceHttpData()"] 44dc9a0e_9473_e766_e499_985b3abd1cad -->|calls| 59b6f7b4_1778_fb37_5bfa_e76f59f1834a 2bfa51fb_e5b1_560b_58e4_d1bf91098ecc["skipControlCharactersStandard()"] 59b6f7b4_1778_fb37_5bfa_e76f59f1834a -->|calls| 2bfa51fb_e5b1_560b_58e4_d1bf91098ecc style 59b6f7b4_1778_fb37_5bfa_e76f59f1834a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/main/java/io/netty/handler/codec/http/multipart/HttpPostMultipartRequestDecoder.java lines 638–656
private static void skipControlCharacters(ByteBuf undecodedChunk) {
if (!undecodedChunk.hasArray()) {
try {
skipControlCharactersStandard(undecodedChunk);
} catch (IndexOutOfBoundsException e1) {
throw new NotEnoughDataDecoderException(e1);
}
return;
}
SeekAheadOptimize sao = new SeekAheadOptimize(undecodedChunk);
while (sao.pos < sao.limit) {
char c = (char) (sao.bytes[sao.pos++] & 0xFF);
if (!Character.isISOControl(c) && !Character.isWhitespace(c)) {
sao.setReadPosition(1);
return;
}
}
throw new NotEnoughDataDecoderException("Access out of bounds");
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does skipControlCharacters() do?
skipControlCharacters() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/http/multipart/HttpPostMultipartRequestDecoder.java.
Where is skipControlCharacters() defined?
skipControlCharacters() is defined in codec-http/src/main/java/io/netty/handler/codec/http/multipart/HttpPostMultipartRequestDecoder.java at line 638.
What does skipControlCharacters() call?
skipControlCharacters() calls 1 function(s): skipControlCharactersStandard.
What calls skipControlCharacters()?
skipControlCharacters() is called by 1 function(s): InterfaceHttpData.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free