File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
core/src/main/java/io/undertow Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -382,10 +382,15 @@ public class UndertowOptions {
382382 */
383383 public static final Option <Integer > MAX_CACHED_HEADER_SIZE = Option .simple (UndertowOptions .class , "MAX_CACHED_HEADER_SIZE" , Integer .class );
384384
385+ /**
386+ * Default value of {@link #HTTP_HEADERS_CACHE_SIZE} option.
387+ */
385388 public static final int DEFAULT_HTTP_HEADERS_CACHE_SIZE = 15 ;
386389
387390 /**
388- * The maximum number of headers that are cached per connection. Defaults to 15. If this is set to zero the cache is disabled.
391+ * The maximum number of headers that are cached per connection. If this is set to zero the cache is disabled.
392+ * <p>
393+ * Defaults to {@link #DEFAULT_HTTP_HEADERS_CACHE_SIZE}
389394 */
390395 public static final Option <Integer > HTTP_HEADERS_CACHE_SIZE = Option .simple (UndertowOptions .class , "HTTP_HEADERS_CACHE_SIZE" , Integer .class );
391396
You can’t perform that action at this time.
0 commit comments