Class RtspResponseDecoder

All Implemented Interfaces:
ChannelHandler, ChannelUpstreamHandler, LifeCycleAwareChannelHandler

public class RtspResponseDecoder extends RtspMessageDecoder
Decodes ChannelBuffers into RTSP responses represented in HttpResponses.

Parameters that prevents excessive memory consumption

NameMeaning
maxInitialLineLength The maximum length of the initial line (e.g. "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.
  • Constructor Details

    • RtspResponseDecoder

      public RtspResponseDecoder()
      Creates a new instance with the default maxInitialLineLength (4096}, maxHeaderSize (8192), and maxContentLength (8192).
    • RtspResponseDecoder

      public RtspResponseDecoder(int maxInitialLineLength, int maxHeaderSize, int maxContentLength)
      Creates a new instance with the specified parameters.
  • Method Details