commit | 006f308d68f2e21d493b96e5e7e237e85acf6e82 | [log] [tgz] |
---|---|---|
author | abat <abat@bigswitch.com> | Fri Oct 17 12:32:18 2014 -0700 |
committer | abat <abat@bigswitch.com> | Fri Oct 17 12:32:18 2014 -0700 |
tree | 22c539ec564dcf0fbb01292e923abd0620feacd0 | |
parent | e2ba5025d1db8f4362269c60d8dae3ec5cf8e870 [diff] | |
parent | 991b9ffbdd4d07490f8d97a244e59de844c3087d [diff] |
Merge into master from pull request #332: openflow_input: add "name" bsn_tlv (https://github.com/floodlight/loxigen/pull/332)
diff --git a/openflow_input/bsn_tlv b/openflow_input/bsn_tlv index 3e52d02..9f8da04 100644 --- a/openflow_input/bsn_tlv +++ b/openflow_input/bsn_tlv
@@ -340,3 +340,9 @@ uint16_t length; uint16_t value; }; + +struct of_bsn_tlv_name : of_bsn_tlv { + uint16_t type == 52; + uint16_t length; + of_octets_t value; /* UTF-8 encoded. Not null terminated. */ +};