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
The PrepareFdbRxVlanTableEntry function encodes the port field as a single byte.
PrepareFdbRxVlanTableEntry
port
The source field (rx_src_port) is uint32_t.
rx_src_port
uint32_t
The port action param value is bit<32> (PortId_t).
bit<32>
PortId_t
Other port fields take 16-bit values. Is this field a 16-bit value encoded in 32 bits, or can the port ID actually be greater than 65535?
Note
The unit test should expect, and test with, a 32-bit (16-bit?) value.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
PrepareFdbRxVlanTableEntry
function encodes theport
field as a single byte.The source field (
rx_src_port
) isuint32_t
.The
port
action param value isbit<32>
(PortId_t
).Other port fields take 16-bit values. Is this field a 16-bit value encoded in 32 bits, or can the port ID actually be greater than 65535?
Note
The unit test should expect, and test with, a 32-bit (16-bit?) value.
The text was updated successfully, but these errors were encountered: