Comment # 4
on bug 8109
from Subramanian
Created attachment 9845 [details]
Sample to show the decoding of BFD discriminator
Attached a sample pcap to show the decode of BFD discriminator.
Please look for the BFD Discriminator TLV for which the support has been added
Ignore
========
Also ignore the error in the PCAP for "Expert Info (Error/Malformed): Invalid
FEC Sub-TLV Padded Length (claimed 8, found 5)"
As wireshark expects the Target FEC stack to be a multiple of 4 . But the
sample I have is length of 5. The pcap can be edited to correct the error.
The error is because of this check
822 /*
823 * Check for padding based on sub-TLV length alignment;
824 * FEC sub-TLVs is zero-padded to align to four-octet boundary.
825 */
826 if (length % 4) {
827 pad = 4 - (length % 4);
You are receiving this mail because:
- You are watching all bug changes.