X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ofproto%2Fconnmgr.h;h=8ac0b8dc6d251d003ea03f4136d2d76483b3f234;hb=625b07205a37dd8c7a8b53b2e53e5f0b55203b38;hp=e326482a1a1b882cb03947a29d584d13ddd0ac76;hpb=a7349929fb86d41f2e2ef77395e33b21f9457d48;p=sliver-openvswitch.git diff --git a/ofproto/connmgr.h b/ofproto/connmgr.h index e326482a1..8ac0b8dc6 100644 --- a/ofproto/connmgr.h +++ b/ofproto/connmgr.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010, 2011, 2012 Nicira Networks. + * Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -29,6 +29,7 @@ struct ofconn; struct ofopgroup; struct ofputil_flow_removed; struct ofputil_packet_in; +struct ofputil_phy_port; struct sset; /* ofproto supports two kinds of OpenFlow connections: @@ -91,17 +92,14 @@ enum ofconn_type ofconn_get_type(const struct ofconn *); enum nx_role ofconn_get_role(const struct ofconn *); void ofconn_set_role(struct ofconn *, enum nx_role); -enum nx_flow_format ofconn_get_flow_format(struct ofconn *); -void ofconn_set_flow_format(struct ofconn *, enum nx_flow_format); +enum ofputil_protocol ofconn_get_protocol(struct ofconn *); +void ofconn_set_protocol(struct ofconn *, enum ofputil_protocol); enum nx_packet_in_format ofconn_get_packet_in_format(struct ofconn *); void ofconn_set_packet_in_format(struct ofconn *, enum nx_packet_in_format); void ofconn_set_controller_id(struct ofconn *, uint16_t controller_id); -bool ofconn_get_flow_mod_table_id(const struct ofconn *); -void ofconn_set_flow_mod_table_id(struct ofconn *, bool enable); - void ofconn_set_invalid_ttl_to_controller(struct ofconn *, bool); bool ofconn_get_invalid_ttl_to_controller(struct ofconn *); @@ -126,12 +124,12 @@ void ofconn_remove_opgroup(struct ofconn *, struct list *, const struct ofp_header *request, int error); /* Sending asynchronous messages. */ -void connmgr_send_port_status(struct connmgr *, const struct ofp_phy_port *, - uint8_t reason); +void connmgr_send_port_status(struct connmgr *, + const struct ofputil_phy_port *, uint8_t reason); void connmgr_send_flow_removed(struct connmgr *, const struct ofputil_flow_removed *); -void connmgr_send_packet_in(struct connmgr *, const struct ofputil_packet_in *, - const struct flow *); +void connmgr_send_packet_in(struct connmgr *, + const struct ofputil_packet_in *); /* Fail-open settings. */ enum ofproto_fail_mode connmgr_get_fail_mode(const struct connmgr *); @@ -142,7 +140,6 @@ int connmgr_get_max_probe_interval(const struct connmgr *); bool connmgr_is_any_controller_connected(const struct connmgr *); bool connmgr_is_any_controller_admitted(const struct connmgr *); int connmgr_failure_duration(const struct connmgr *); -void connmgr_broadcast(struct connmgr *, struct ofpbuf *); /* In-band configuration. */ void connmgr_set_extra_in_band_remotes(struct connmgr *,