Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2015-03-12 05:52:17 +0000
committerGreg Wilkins2015-03-12 05:52:17 +0000
commit0dd58d2efe530d8663b23117e4bc7a3936256039 (patch)
treee3a578929fcd1b3ee0f09c2da2f378fa007ba955 /jetty-fcgi/fcgi-server/src
parenta7cfc3dc2df3e9c335239b39972bc021eff8c797 (diff)
downloadorg.eclipse.jetty.project-0dd58d2efe530d8663b23117e4bc7a3936256039.tar.gz
org.eclipse.jetty.project-0dd58d2efe530d8663b23117e4bc7a3936256039.tar.xz
org.eclipse.jetty.project-0dd58d2efe530d8663b23117e4bc7a3936256039.zip
459845 - Support upgrade from http1 to http2
Moved the sneaky direct upgrade to its own method and added support to detect a standard upgrade. The standard upgrade now creates the h2c connection and decodes the settings header, but it does not yet process the settings nor send a response to the request.
Diffstat (limited to 'jetty-fcgi/fcgi-server/src')
-rw-r--r--jetty-fcgi/fcgi-server/src/main/java/org/eclipse/jetty/fcgi/server/ServerFCGIConnectionFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jetty-fcgi/fcgi-server/src/main/java/org/eclipse/jetty/fcgi/server/ServerFCGIConnectionFactory.java b/jetty-fcgi/fcgi-server/src/main/java/org/eclipse/jetty/fcgi/server/ServerFCGIConnectionFactory.java
index 5e49e4a293..d1922846d2 100644
--- a/jetty-fcgi/fcgi-server/src/main/java/org/eclipse/jetty/fcgi/server/ServerFCGIConnectionFactory.java
+++ b/jetty-fcgi/fcgi-server/src/main/java/org/eclipse/jetty/fcgi/server/ServerFCGIConnectionFactory.java
@@ -42,7 +42,7 @@ public class ServerFCGIConnectionFactory extends AbstractConnectionFactory
}
@Override
- public Connection newConnection(Connector connector, EndPoint endPoint)
+ public Connection newConnection(Connector connector, EndPoint endPoint, Object attachment)
{
return new ServerFCGIConnection(connector, endPoint, configuration, sendStatus200);
}

Back to the top