HttpConnection.java | 320 /** Scratch space for up to 16 hex digits, and then a constant CRLF. */ 321 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 357 hex[--cursor] = HEX_DIGITS[((int) (i & 0xf))]; 359 sink.write(hex, cursor, hex.length - cursor); 522 throw new ProtocolException("Expected a hex chunk size but was " + chunkSizeString);
|