First time here? Check out the FAQ!
THIS IS A TEST INSTANCE. Feel free to ask and answer questions, but take care to avoid triggering too many notifications.
0

expert info on MMS protocol

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.

ntbbt's avatar
3
ntbbt
asked 2022-09-15 20:06:33 +0000
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0

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 }},
    };
Chuckc's avatar
3k
Chuckc
answered 2022-09-16 16:49:15 +0000
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss.

Add Answer