Skip to content

Commit

Permalink
ipv6 src/dst tlvs
Browse files Browse the repository at this point in the history
  • Loading branch information
harshsin committed Aug 11, 2016
1 parent 5be7ba1 commit 3138ad2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions openflow_input/bsn_tlv
Original file line number Diff line number Diff line change
Expand Up @@ -871,3 +871,15 @@ struct of_bsn_tlv_icmpv6_chksum : of_bsn_tlv {
uint16_t length;
uint16_t value;
};

struct of_bsn_tlv_ipv6_src : of_bsn_tlv {
uint16_t type == 126;
uint16_t length;
of_ipv6_t value;
};

struct of_bsn_tlv_ipv6_dst : of_bsn_tlv {
uint16_t type == 127;
uint16_t length;
of_ipv6_t value;
};

0 comments on commit 3138ad2

Please sign in to comment.