public abstract class RtspObjectDecoder extends HttpObjectDecoder
ByteBuf
s into RTSP messages represented in
HttpMessage
s.
Name | Meaning |
---|---|
maxInitialLineLength |
The maximum length of the initial line
(e.g. "SETUP / RTSP/1.0" or "RTSP/1.0 200 OK" )
If the length of the initial line exceeds this value, a
TooLongFrameException will be raised. |
maxHeaderSize |
The maximum length of all headers. If the sum of the length of each
header exceeds this value, a TooLongFrameException will be raised. |
maxContentLength |
The maximum length of the content. If the content length exceeds this
value, a TooLongFrameException will be raised. |
ChannelHandler.Sharable
Modifier | Constructor and Description |
---|---|
protected |
RtspObjectDecoder()
Creates a new instance with the default
maxInitialLineLength (4096 }, maxHeaderSize (8192) , and
maxContentLength (8192) . |
protected |
RtspObjectDecoder(int maxInitialLineLength,
int maxHeaderSize,
int maxContentLength)
Creates a new instance with the specified parameters.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
isContentAlwaysEmpty(HttpMessage msg) |
createInvalidMessage, createMessage, decode, isDecodingRequest
actualReadableBytes, callDecode, channelInactive, channelReadSuspended, checkpoint, checkpoint, discardInboundReadBytes, discardInboundReadBytes0, internalBuffer, newInboundBuffer, newInboundBuffer0, state, state
decodeLast, inboundBufferUpdated, isSingleDecode, setSingleDecode
freeInboundBuffer, inboundBufferUpdated
channelActive, channelRegistered, channelUnregistered, userEventTriggered
afterAdd, afterRemove, beforeAdd, beforeRemove, exceptionCaught
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
channelActive, channelRegistered, channelUnregistered, userEventTriggered
afterAdd, afterRemove, beforeAdd, beforeRemove, exceptionCaught
protected RtspObjectDecoder()
maxInitialLineLength (4096
}, maxHeaderSize (8192)
, and
maxContentLength (8192)
.protected RtspObjectDecoder(int maxInitialLineLength, int maxHeaderSize, int maxContentLength)
protected boolean isContentAlwaysEmpty(HttpMessage msg)
isContentAlwaysEmpty
in class HttpObjectDecoder
Copyright © 2008-2013 The Netty Project. All Rights Reserved.