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