hi, I want to know if it is possible to use two dissectors with the same protocol for different messages? These two messages are different but having the same protocol. so i am supposed to use the same dissector for both the messages or is it possible to create two different dissectors for the same protocol for two different messages?? thank you. asked 03 Aug '15, 00:51 zombimind |
One Answer:
Just do as all the other dissectors for protocols that have more than one message type do, and just have one dissector for the protocol that somehow determines the type of the message (for example, by looking at a message type field if there is one) and dissects all the different types of messages. answered 03 Aug '15, 01:03 Guy Harris ♦♦ |
thanks form your time harris,, so its not possible to have two dissectors for the same protocol..??
No, it is not. As per my response, you don't need to have two dissectors for the same protocol, you just have one dissector that dissects all the messages for the protocol.
I got it , thanks..