Skip to content

Commit

Permalink
Merged branch 'jetty-12.0.x' into 'fix/jetty-12.0.x/httpsender-proxy-…
Browse files Browse the repository at this point in the history
…continue-fixes'.

Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
  • Loading branch information
sbordet committed Aug 2, 2024
2 parents 4e9755d + fa143fa commit 6b307e1
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,14 @@ protected void sendProxyResponseError(HttpServletRequest clientRequest, HttpServ
}
}

/**
* <p>Returns the action to perform when the proxy receives
* a 100 Continue response from the server.</p>
*
* @param clientRequest the client request
* @param proxyRequest the request being proxied
* @return the 100 Continue action to run
*/
protected Runnable onContinue(HttpServletRequest clientRequest, Request proxyRequest)
{
return null;
Expand Down

0 comments on commit 6b307e1

Please sign in to comment.