diff src/org/eclipse/jetty/io/nio/SslConnection.java @ 1003:21910079096e

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 22 Oct 2016 22:24:47 -0600
parents 35d04ac3fd0b
children 3c4c7cc7904f
line wrap: on
line diff
--- a/src/org/eclipse/jetty/io/nio/SslConnection.java	Sat Oct 22 21:56:44 2016 -0600
+++ b/src/org/eclipse/jetty/io/nio/SslConnection.java	Sat Oct 22 22:24:47 2016 -0600
@@ -32,6 +32,7 @@
 import org.eclipse.jetty.io.AsyncEndPoint;
 import org.eclipse.jetty.io.Buffer;
 import org.eclipse.jetty.io.EndPoint;
+import org.eclipse.jetty.server.AsyncHttpConnection;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -54,7 +55,7 @@
 	private static final ThreadLocal<SslBuffers> __buffers = new ThreadLocal<SslBuffers>();
 	private final SSLEngine _engine;
 	private final SSLSession _session;
-	private AsyncConnection _connection;
+	private AsyncHttpConnection _connection;
 	private final SslEndPoint _sslEndPoint;
 	private int _allocations;
 	private SslBuffers _buffers;
@@ -723,7 +724,7 @@
 			_aEndp.setMaxIdleTime(timeMs);
 		}
 
-		public void setConnection(AsyncConnection connection)
+		public void setConnection(AsyncHttpConnection connection)
 		{
 			_connection = connection;
 		}