Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-bugs: [Wireshark-bugs] [Bug 6881] Support for MPLS Packet Loss and Delay Measurement,

Date: Thu, 26 Jul 2012 15:42:03 -0700 (PDT)
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6881

--- Comment #11 from Bill Meier <wmeier@xxxxxxxxxxx> 2012-07-26 15:42:02 PDT ---
FF:

I suspect the following in mpls_pm_build_cinfo:
    } else {
        <...>
        *sid = ((guint32) sid0 >> 6) | ((guint32) sid1 >> 8) |
            ((guint32) sid2 >> 16) | ((guint32) sid3 >> 24);
    }


should be corrected to be:

    } else {
        <...>
        *sid = ((guint32) sid0 >> 6) | ((guint32) sid1 << 8) |
            ((guint32) sid2 << 16) | ((guint32) sid3 << 24);
    }


If so, I'll commit the correction ....

Thanks

-- 
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.