Ask Your Question
0

expert info on MMS protocol

asked 2022-09-15 20:06:33 +0000

ntbbt gravatar image

Hi, Where is possible to see what are the expert info's programmed inside Wireshark dissector (for example for MMS)? I have searched Wireshark GitHub but without any luck. I would like to know what type of errors dissector is capable of detecting.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-09-16 16:49:15 +0000

Chuckc gravatar image

The primary repository is Gitlab:
https://gitlab.com/wireshark/wireshar...

epan/dissectors/packet-mms.c

    static ei_register_info ei[] = {
        { &ei_mms_mal_timeofday_encoding, { "mms.malformed.timeofday_encoding", PI_MALFORMED, 
                                 PI_WARN, "BER Error: malformed TimeOfDay encoding", EXPFILL }},
        { &ei_mms_mal_utctime_encoding, { "mms.malformed.utctime", PI_MALFORMED, PI_WARN, 
                                 "BER Error: malformed IEC61850 UTCTime encoding", EXPFILL }},
        { &ei_mms_zero_pdu, { "mms.zero_pdu", PI_PROTOCOL, PI_ERROR, 
                                  "Internal error, zero-byte MMS PDU", EXPFILL }},
    };
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2022-09-15 20:06:33 +0000

Seen: 260 times

Last updated: Sep 16 '22