From 902b816539fde10d486077e7344d9654c98e7087 Mon Sep 17 00:00:00 2001 From: Justin Pettit Date: Mon, 22 Sep 2008 17:48:06 -0700 Subject: [PATCH] Fix some old references to OFPPFL_ in comments. --- include/openflow.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/openflow.h b/include/openflow.h index e34c60188..f63ceff3c 100644 --- a/include/openflow.h +++ b/include/openflow.h @@ -197,15 +197,15 @@ enum ofp_port_config { enum ofp_port_state { OFPPS_LINK_DOWN = 1 << 0, /* No physical link present. */ - /* The OFPPFL_STP_* bits have no effect on switch operation. The - * controller must adjust OFPPFL_NO_RECV, OFPPFL_NO_FWD, and - * OFPPFL_NO_PACKET_IN appropriately to fully implement an 802.1D spanning + /* The OFPPS_STP_* bits have no effect on switch operation. The + * controller must adjust OFPPC_NO_RECV, OFPPC_NO_FWD, and + * OFPPC_NO_PACKET_IN appropriately to fully implement an 802.1D spanning * tree. */ OFPPS_STP_LISTEN = 0 << 8, /* Not learning or relaying frames. */ OFPPS_STP_LEARN = 1 << 8, /* Learning but not relaying frames. */ OFPPS_STP_FORWARD = 2 << 8, /* Learning and relaying frames. */ OFPPS_STP_BLOCK = 3 << 8, /* Not part of spanning tree. */ - OFPPS_STP_MASK = 3 << 8 /* Bit mask for OFPPFL_STP_* values. */ + OFPPS_STP_MASK = 3 << 8 /* Bit mask for OFPPS_STP_* values. */ }; /* Features of physical ports available in a datapath. */ -- 2.43.0