Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2015-02-13 04:06:24 +0000
committerGreg Wilkins2015-02-13 04:06:24 +0000
commitc090f179a7c3bab138aa14bf08abaab9e3cd27d3 (patch)
treeffcb792bac8b64362d5c4c6241d4612f4fd76c07 /jetty-server/src
parent4db654ad324873841f808641bb2354b7cc7c8b68 (diff)
downloadorg.eclipse.jetty.project-c090f179a7c3bab138aa14bf08abaab9e3cd27d3.tar.gz
org.eclipse.jetty.project-c090f179a7c3bab138aa14bf08abaab9e3cd27d3.tar.xz
org.eclipse.jetty.project-c090f179a7c3bab138aa14bf08abaab9e3cd27d3.zip
459845 - Support upgrade from http1 to http2/websocket
Added jetty-http2c.xml and http2c.mod
Diffstat (limited to 'jetty-server/src')
-rw-r--r--jetty-server/src/main/config/etc/jetty-http.xml2
-rw-r--r--jetty-server/src/main/java/org/eclipse/jetty/server/HttpConnectionFactory.java13
2 files changed, 3 insertions, 12 deletions
diff --git a/jetty-server/src/main/config/etc/jetty-http.xml b/jetty-server/src/main/config/etc/jetty-http.xml
index 8456a14d4b..adeeaae331 100644
--- a/jetty-server/src/main/config/etc/jetty-http.xml
+++ b/jetty-server/src/main/config/etc/jetty-http.xml
@@ -20,7 +20,7 @@
<!-- =========================================================== -->
<Call name="addConnector">
<Arg>
- <New class="org.eclipse.jetty.server.ServerConnector">
+ <New id="httpConnector" class="org.eclipse.jetty.server.ServerConnector">
<Arg name="server"><Ref refid="Server" /></Arg>
<Arg name="acceptors" type="int"><Property name="http.acceptors" default="-1"/></Arg>
<Arg name="selectors" type="int"><Property name="http.selectors" default="-1"/></Arg>
diff --git a/jetty-server/src/main/java/org/eclipse/jetty/server/HttpConnectionFactory.java b/jetty-server/src/main/java/org/eclipse/jetty/server/HttpConnectionFactory.java
index 577a9f82c9..9926325146 100644
--- a/jetty-server/src/main/java/org/eclipse/jetty/server/HttpConnectionFactory.java
+++ b/jetty-server/src/main/java/org/eclipse/jetty/server/HttpConnectionFactory.java
@@ -41,6 +41,8 @@ public class HttpConnectionFactory extends AbstractConnectionFactory implements
{
super(HttpVersion.HTTP_1_1.asString());
_config=config;
+ if (config==null)
+ throw new IllegalArgumentException("Null HttpConfiguration");
addBean(_config);
}
@@ -50,17 +52,6 @@ public class HttpConnectionFactory extends AbstractConnectionFactory implements
return _config;
}
- @Deprecated
- public boolean isDispatchIO()
- {
- return false;
- }
-
- @Deprecated
- public void setDispatchIO(boolean dispatchIO)
- {
- }
-
@Override
public Connection newConnection(Connector connector, EndPoint endPoint)
{

Back to the top