[ovs-dev] openflow-1.0 : enum ofp_config_flags isn't based upon OpenFlow 1.0
Tetsuo NAKAGAWA
nakagawa at mxc.nes.nec.co.jp
Mon Feb 22 22:23:09 PST 2010
Hi.
I'm using Open vSwitch with openflow-1.0 branch.
enum ofp_config_flags is defined as follows in
include/openflow/openflow.h.
enum ofp_config_flags {
/* Handling of IP fragments. */
OFPC_FRAG_NORMAL = 0 << 1, /* No special handling for fragments. */
OFPC_FRAG_DROP = 1 << 1, /* Drop fragments. */
OFPC_FRAG_REASM = 2 << 1, /* Reassemble (only if OFPC_IP_REASM set). */
OFPC_FRAG_MASK = 3 << 1
};
But, it's described as follows in "OpenFlow Switch
Specification Version 1.0.0".
5.3.2 Switch Configuration
(snip)
The configuration flags include the following:
enum ofp_config_flags {
/* Handling of IP fragments. */
OFPC_FRAG_NORMAL = 0, /* No special handling for fragments. */
OFPC_FRAG_DROP = 1, /* Drop fragments. */
OFPC_FRAG_REASM = 2, /* Reassemble (only if OFPC_IP_REASM set). */
OFPC_FRAG_MASK = 3
};
Please fix a definition of enum ofp_config_flags to based
upon OpenFlow 1.0.
best regards,
--- Tetsuo NAKAGAWA
More information about the dev
mailing list