Ask Your Question

MaxiKoh95's profile - activity

2023-09-20 10:29:12 +0000 received badge  Notable Question (source)
2023-09-20 10:29:12 +0000 received badge  Popular Question (source)
2023-09-15 10:45:05 +0000 received badge  Popular Question (source)
2021-08-31 09:53:13 +0000 received badge  Taxonomist
2019-01-25 06:56:46 +0000 commented answer What should be done when detecting faulty frames?

Thank you so much, I didn't know the difference until now.

2019-01-25 06:54:33 +0000 marked best answer What should be done when detecting faulty frames?

Hey Guys, Should I issue a message and if so, how? The current solution used is:

return 0;

But the frame falsely looks good.

Thanks a lot!

2019-01-24 11:01:03 +0000 asked a question What should be done when detecting faulty frames?

What should be done when detecting faulty frames? Hey Guys, Should I issue a message and if so, how? The current solutio

2019-01-16 12:37:39 +0000 marked best answer Can I automatically fill a value_string array?

Hey Guys, I want to write a dissector for eCPRI. In this protocol you find some byte-fields, which are reserved. Is it possible to fill a value_string array?

static const value_string reset_coding[] = {
    { 0x00, "Reserved" },
    { 0x01, "Remote reset request" },
    { 0x02, "Remote reset response" },
    { 0x03, "Remote Request" },
    { 0x04, "Remote request with Follow_Up" },
    { 0x05, "Follow_Up" },
    { 0x06, "Reserved" },
    { 0x07, "Reserved" },
    { 0x08, "Reserved" },
    { 0x09, "Reserved" },
    { 0x0A, "Reserved" },
    { 0x0B, "Reserved" },
    { 0x0C, "Reserved" },
    { 0x0D, "Reserved" },
    { 0x0E, "Reserved" },
    { 0x0F, "Reserved" }, // to 0xFF
    //...
    { 0xFF, "Reserved" },
    { 0, NULL}

};

Thanks a lot!

2019-01-16 12:37:39 +0000 received badge  Scholar (source)
2019-01-16 09:17:51 +0000 asked a question Can I automatically fill a value_string array?

Can I fill automaticly a value_string array? Hey Guys, I want to write a dissector for eCPRI. In this protocol you find