Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-dev] Problem with SSL-Connections in jetty 9.3.1

In Jetty 9.3.1 there is an problem is SSL-Connection fail to handshake.
the Problem is in class "org.eclipse.jetty.server.HttpConnection".
The method "public void onFillable()" get an negativ retrun from
fillRequestBuffer() that mean closed connection
but still executes parseRequestBuffer() with the rest buffer.

Gruß Thomas

  final int filled = fillRequestBuffer();
There is no check if the connection is still open before the
parseRequestBuffer()
is excecuted. That cause for example 400: Bad URI even if SSL-Handshake
already failed.



Back to the top