commit | 3e14dd961ba8d22a211bed2cc8958f036be71507 | [log] [tgz] |
---|---|---|
author | abat <abat@bigswitch.com> | Mon Aug 24 14:07:21 2015 -0700 |
committer | abat <abat@bigswitch.com> | Mon Aug 24 14:07:21 2015 -0700 |
tree | 63f35097434b9cdb129a6628b954c39c9809bed8 | |
parent | 88dd8aeae8cc917fcadfd9eb0feaf8679a907f40 [diff] | |
parent | 916ead289de06db37e2f4e09a4f4437736220cc9 [diff] |
Merge into master from pull request #418: openflow_input: add ipv6 TLV (https://github.com/floodlight/loxigen/pull/418)
diff --git a/openflow_input/bsn_tlv b/openflow_input/bsn_tlv index 2a83a43..0985e1c 100644 --- a/openflow_input/bsn_tlv +++ b/openflow_input/bsn_tlv
@@ -546,3 +546,9 @@ uint16_t type == 83; uint16_t length; }; + +struct of_bsn_tlv_ipv6 : of_bsn_tlv { + uint16_t type == 84; + uint16_t length; + of_ipv6_t value; +};