openflow_input: add standard OXMs for 1.3 and 1.4
The pbb_isid OXM will require more work because it uses a 3 byte value.
diff --git a/openflow_input/oxm-1.3 b/openflow_input/oxm-1.3
index ac57589..4bb55a1 100644
--- a/openflow_input/oxm-1.3
+++ b/openflow_input/oxm-1.3
@@ -52,3 +52,16 @@
uint8_t value;
uint8_t value_mask;
};
+
+/* Not supporting pbb_isid at the moment, requires a 3-byte field */
+
+struct of_oxm_ipv6_exthdr : of_oxm {
+ uint32_t type_len == 0x80004e02;
+ uint16_t value;
+};
+
+struct of_oxm_ipv6_exthdr_masked : of_oxm {
+ uint32_t type_len == 0x80004f04;
+ uint16_t value;
+ uint16_t value_mask;
+};