jdk/src/java.base/share/classes/sun/net/www/http/ChunkedInputStream.java
changeset 32649 2ee9017c7597
parent 26720 6b160d97c51d
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
   126     private boolean closed;
   126     private boolean closed;
   127 
   127 
   128     /*
   128     /*
   129      * Maximum chunk header size of 2KB + 2 bytes for CRLF
   129      * Maximum chunk header size of 2KB + 2 bytes for CRLF
   130      */
   130      */
   131     private final static int MAX_CHUNK_HEADER_SIZE = 2050;
   131     private static final int MAX_CHUNK_HEADER_SIZE = 2050;
   132 
   132 
   133     /**
   133     /**
   134      * State to indicate that next field should be :-
   134      * State to indicate that next field should be :-
   135      *  chunk-size [ chunk-extension ] CRLF
   135      *  chunk-size [ chunk-extension ] CRLF
   136      */
   136      */