Initial framework migration to netty.
[bgpcep.git] / pcep / api / src / main / java / org / opendaylight / protocol / pcep / PCEPSessionFactory.java
index c6c8499f3703f81d0f686b28ce2f1e81f03ed3ae..a3d9b16912e1d7247fd3ffeab5df6bf4563a8564 100644 (file)
@@ -7,6 +7,8 @@
  */
 package org.opendaylight.protocol.pcep;
 
+import io.netty.channel.ChannelHandlerContext;
+
 import java.util.Timer;
 
 import org.opendaylight.protocol.framework.ProtocolConnection;
@@ -16,5 +18,6 @@ import org.opendaylight.protocol.framework.SessionParent;
 
 public interface PCEPSessionFactory extends ProtocolSessionFactory {
        @Override
-       public ProtocolSession getProtocolSession(SessionParent parent, Timer timer, ProtocolConnection connection, int sessionId);
+       public ProtocolSession getProtocolSession(SessionParent parent, Timer timer, ProtocolConnection connection, int sessionId,
+                       ChannelHandlerContext ctx);
 }