183184185186187188189190191192193
} } if (contentLength == -1) { contentLength = 0; } reqIn = new BoundedInputStream(socketIn, contentLength); } String connectionState = headers.get("Connection"); if ("close".equalsIgnoreCase(connectionState)) { connectionClosed = true;
259260261262263264265266267268
} else { int contentLength = getContentLength(); if (contentLength == -1) { contentLength = 0; } reqIn = new BoundedInputStream(in, contentLength); } } return reqIn; }
258259260261262263264265266267