Class HttpRequestParser.HttpRequestParserMetaData

    • Constructor Summary

      Constructors 
      Constructor Description
      HttpRequestParserMetaData​(int maxHeaderCount, int maxTextLength, long maxEntityLength)
      Initiate.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • maxHeaderCount

        public final int maxHeaderCount
        Maximum number of HttpHeader instances for a HttpRequest.
      • maxTextLength

        public final int maxTextLength
        Maximum number of bytes per TEXT.
      • maxEntityLength

        public final long maxEntityLength
        Maximum length of the entity. Requests with entities greater than this will fail parsing.
    • Constructor Detail

      • HttpRequestParserMetaData

        public HttpRequestParserMetaData​(int maxHeaderCount,
                                         int maxTextLength,
                                         long maxEntityLength)
        Initiate.
        Parameters:
        maxHeaderCount - Maximum number of HttpHeader instances for a HttpRequest.
        maxTextLength - Maximum number of bytes per TEXT.
        maxEntityLength - Maximum length of the entity. Requests with entities greater than this will fail parsing.