Instruction experimenterId fix
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / ConnectionInitializer.java
1 package org.opendaylight.openflowjava.protocol.impl.core;
2
3 /**
4  * @author martin.uhlir
5  *
6  */
7 public interface ConnectionInitializer {
8
9     /**
10      * Initiates connection towards device
11      * @param host - host IP
12      * @param port - port number
13      */
14     void initiateConnection(String host, int port);
15
16 }