mirror of
https://github.com/openvswitch/ovs
synced 2025-10-29 15:28:56 +00:00
rconn: Add allowed OpenFlow versions
Add allowed OpenFlow versions to struct rconn to allow reconnect to use these parameters rather than hard-coded defaults. This is in preparation for allowing configuration of the allowed OpenFlow versions. Signed-off-by: Simon Horman <horms@verge.net.au> Signed-off-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
@@ -38,7 +38,8 @@ struct vconn;
|
||||
struct rconn_packet_counter;
|
||||
|
||||
struct rconn *rconn_create(int inactivity_probe_interval,
|
||||
int max_backoff, uint8_t dscp);
|
||||
int max_backoff, uint8_t dscp,
|
||||
uint32_t allowed_versions);
|
||||
void rconn_set_dscp(struct rconn *rc, uint8_t dscp);
|
||||
uint8_t rconn_get_dscp(const struct rconn *rc);
|
||||
void rconn_set_max_backoff(struct rconn *, int max_backoff);
|
||||
|
||||
Reference in New Issue
Block a user