Add queue_id and queue_weight tlvs
diff --git a/openflow_input/bsn_tlv b/openflow_input/bsn_tlv
index 01d7683..e17e32b 100644
--- a/openflow_input/bsn_tlv
+++ b/openflow_input/bsn_tlv
@@ -154,3 +154,15 @@
     uint16_t length;
     uint32_t value;
 };
+
+struct of_bsn_tlv_queue_id : of_bsn_tlv {
+    uint16_t type == 20;
+    uint16_t length;
+    uint32_t value;
+};
+
+struct of_bsn_tlv_queue_weight : of_bsn_tlv {
+    uint16_t type == 21;
+    uint16_t length;
+    uint32_t value;
+};