HttpConnection.java | 316 /** Scratch space for up to 16 hex digits, and then a constant CRLF. */ 317 private final byte[] hex = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '\r', '\n' }; field in class:HttpConnection.ChunkedSink 353 hex[--cursor] = HEX_DIGITS[((int) (i & 0xf))]; 355 sink.write(hex, cursor, hex.length - cursor); 518 throw new ProtocolException("Expected a hex chunk size but was " + chunkSizeString);
|