openflow_input: add inheritance
diff --git a/openflow_input/bsn_l2_table b/openflow_input/bsn_l2_table
index 8075d7f..725c805 100644
--- a/openflow_input/bsn_l2_table
+++ b/openflow_input/bsn_l2_table
@@ -28,7 +28,7 @@
#version 1
// BSN L2 table configuration messages
-struct of_bsn_set_l2_table_request {
+struct of_bsn_set_l2_table_request : of_bsn_header {
uint8_t version;
uint8_t type == 4;
uint16_t length;
@@ -41,7 +41,7 @@
pad(4);
};
-struct of_bsn_set_l2_table_reply {
+struct of_bsn_set_l2_table_reply : of_bsn_header {
uint8_t version;
uint8_t type == 4;
uint16_t length;
@@ -54,7 +54,7 @@
uint32_t status; // 0 means success
};
-struct of_bsn_get_l2_table_request {
+struct of_bsn_get_l2_table_request : of_bsn_header {
uint8_t version;
uint8_t type == 4;
uint16_t length;
@@ -63,7 +63,7 @@
uint32_t subtype == 13;
};
-struct of_bsn_get_l2_table_reply {
+struct of_bsn_get_l2_table_reply : of_bsn_header {
uint8_t version;
uint8_t type == 4;
uint16_t length;