Peng He
Peng He
should it be: uint8_t tag = static_cast(ti == 0 ? 1 : tag); but the code is: uint8_t tag = static_cast(ti == 0 ? 1 : 0); ?
The 'dest1' has been deduced to two parameters: std:pair and std::initializer_list, not an initializer_list of std::pair. add an extra braces to pass compilation. Not sure if this is a compiler...
e.g. Reuse UDP dissector for part of pkts. We have a packet being inserted a small data between IP and UDP headers, and wanted to display it using wireshark. We...