Hi,
How about
if (check_col(pinfo->cinfo, COL_PROTOCOL))
{
col_set_str(pinfo->cinfo, COL_PROTOCOL, "myProtocol" );
}
Thanx,
Jaap
On Wed, 21 Jun 2006, Cook, Timothy wrote:
> We have written a new dissector for Wireshark. Using the the
> README.developer (plus other dissector examples) made the creation very
> simple (thanks for the detailed info).
>
> My dissector hooks TCP port 1000.
>
> How can I hook TCP packets (SYN/FIN/RST/...) and change the Protocol
> column data to mimic the respective dissector.
>
> I want to be able to filter based on the protocol & get the whole
> conversation, including the channel open & close.
>
>
> -Tim
>