We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ipv6_flabel is 20bit. but byte_size(val) == 20, may should be bit_size(val) == 20.
byte_size(val) == 20
bit_size(val) == 20
https://github.com/FlowForwarding/of_msg_lib/blob/master/src/of_msg_lib_v4.erl#L914 https://github.com/FlowForwarding/of_msg_lib/blob/master/src/of_msg_lib_v5.erl#L1036
I fixed as follows: https://github.com/shun159/of_msg_lib/blob/fix/ipv6_label_guard/src/of_msg_lib_v5.erl#L1036 https://github.com/shun159/of_msg_lib/blob/fix/ipv6_label_guard/src/of_msg_lib_v4.erl#L914
regards.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ipv6_flabel is 20bit.
but
byte_size(val) == 20
, may should bebit_size(val) == 20
.https://github.com/FlowForwarding/of_msg_lib/blob/master/src/of_msg_lib_v4.erl#L914
https://github.com/FlowForwarding/of_msg_lib/blob/master/src/of_msg_lib_v5.erl#L1036
I fixed as follows:
https://github.com/shun159/of_msg_lib/blob/fix/ipv6_label_guard/src/of_msg_lib_v5.erl#L1036
https://github.com/shun159/of_msg_lib/blob/fix/ipv6_label_guard/src/of_msg_lib_v4.erl#L914
regards.
The text was updated successfully, but these errors were encountered: