Rename controller_connection to rconn and use it in secchan also.
[openvswitch] / switch / datapath.h
index 1c52e4353fb4ce27a0c65a291d9d7bf04c71b157..b30de513ea30dfd1dfb3f960d3a092b2faaa67b3 100644 (file)
 #include "list.h"
 
 struct datapath;
-struct controller_connection;
+struct rconn;
 
-int dp_new(struct datapath **, uint64_t dpid, struct controller_connection *);
+int dp_new(struct datapath **, uint64_t dpid, struct rconn *);
 int dp_add_port(struct datapath *, const char *netdev);
 void dp_run(struct datapath *);
 void dp_wait(struct datapath *);
 
-void dp_send_flow_expired(struct datapath *, struct sw_flow *);
-
 #endif /* datapath.h */