Ask Your Question

allantse's profile - activity

2020-03-24 17:01:53 +0000 received badge  Taxonomist
2019-03-27 16:59:06 +0000 received badge  Famous Question (source)
2018-07-27 13:30:54 +0000 received badge  Notable Question (source)
2018-07-27 13:30:54 +0000 received badge  Popular Question (source)
2017-12-07 17:25:26 +0000 asked a question change source and destination column with dissector

change source and destination column with dissector In writing a dissector, is it possible to change the source and dest

2017-12-06 22:34:21 +0000 received badge  Rapid Responder (source)
2017-12-06 22:34:21 +0000 answered a question how to decode part of a message as IPv4 with a custom dissector?

create a new tvb with tvb_new_real_data, find the ip handle with find_dissector("ip"), then use call_dissector

2017-12-06 22:31:17 +0000 commented question how to decode part of a message as IPv4 with a custom dissector?

The created IPv4 has a few different fields such as length and protocol. Anyway, I solved the issue by dissecting the c

2017-12-05 23:39:53 +0000 commented question how to decode part of a message as IPv4 with a custom dissector?

Thanks for the reply. The Ethernet type is the standard 0x0800 for IPv4. The protocol type in the IPv4 header is a custo

2017-12-05 21:17:28 +0000 asked a question how to decode part of a message as IPv4 with a custom dissector?

how to decode part of a message as IPv4 with a custom dissector? I am just learning to write custom dissectors. I have a