Class ParamsContentParser
java.lang.Object
org.eclipse.jetty.fcgi.parser.ContentParser
org.eclipse.jetty.fcgi.parser.ParamsContentParser
Parser for the PARAMS frame body.
struct small_name_small_value_params_body {
ubyte nameLength;
ubyte valueLength;
ubyte[] nameBytes;
ubyte[] valueBytes;
}
struct small_name_large_value_params_body {
ubyte nameLength;
uint valueLength;
ubyte[] nameBytes;
ubyte[] valueBytes;
}
struct large_name_small_value_params_body {
uint nameLength;
ubyte valueLength;
ubyte[] nameBytes;
ubyte[] valueBytes;
}
struct large_name_large_value_params_body {
uint nameLength;
uint valueLength;
ubyte[] nameBytes;
ubyte[] valueBytes;
}
-
Nested Class Summary
Nested classes/interfaces inherited from class ContentParser
ContentParser.Result -
Constructor Summary
ConstructorsConstructorDescriptionParamsContentParser(HeaderParser headerParser, ServerParser.Listener listener) -
Method Summary
Modifier and TypeMethodDescriptionvoidprotected voidprotected voidonParams()parse(ByteBuffer buffer) Methods inherited from class ContentParser
getContentLength, getRequest
-
Constructor Details
-
ParamsContentParser
-
-
Method Details
-
parse
- Specified by:
parsein classContentParser
-
noContent
public void noContent()- Overrides:
noContentin classContentParser
-
onParam
-
onParams
protected void onParams()
-