mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-23 12:34:32 +02:00
6630639: lightweight HttpServer leaks file descriptors on no-data connections
Not cleaning up no-data connections properly Reviewed-by: chegar
This commit is contained in:
parent
6c11535cdd
commit
a0ec52da33
2 changed files with 6 additions and 0 deletions
|
@ -52,6 +52,9 @@ class Request {
|
||||||
os = rawout;
|
os = rawout;
|
||||||
do {
|
do {
|
||||||
startLine = readLine();
|
startLine = readLine();
|
||||||
|
if (startLine == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
/* skip blank lines */
|
/* skip blank lines */
|
||||||
} while (startLine.equals (""));
|
} while (startLine.equals (""));
|
||||||
}
|
}
|
||||||
|
|
|
@ -441,6 +441,7 @@ class ServerImpl implements TimeSource {
|
||||||
rawin = sslStreams.getInputStream();
|
rawin = sslStreams.getInputStream();
|
||||||
rawout = sslStreams.getOutputStream();
|
rawout = sslStreams.getOutputStream();
|
||||||
engine = sslStreams.getSSLEngine();
|
engine = sslStreams.getSSLEngine();
|
||||||
|
connection.sslStreams = sslStreams;
|
||||||
} else {
|
} else {
|
||||||
rawin = new BufferedInputStream(
|
rawin = new BufferedInputStream(
|
||||||
new Request.ReadStream (
|
new Request.ReadStream (
|
||||||
|
@ -450,6 +451,8 @@ class ServerImpl implements TimeSource {
|
||||||
ServerImpl.this, chan
|
ServerImpl.this, chan
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
connection.raw = rawin;
|
||||||
|
connection.rawout = rawout;
|
||||||
}
|
}
|
||||||
Request req = new Request (rawin, rawout);
|
Request req = new Request (rawin, rawout);
|
||||||
requestLine = req.requestLine();
|
requestLine = req.requestLine();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue