[Wireshark-dev] Re new plug-in dissector - no packets, , displayed when dissector specific filter applied

2009-05-05 Thread Stuart Marsden
Hi, 6 thanks 1*10 works a treat, just proves there is now substitute for talent Stuart -- From: Guy Harris Subject: Re: [Wireshark-dev] new plug-in dissector - no packets, displayed when dissector specific filter applied On May 1, 2009, at 9:10 AM, Stuart Marsden

Re: [Wireshark-dev] new plug-in dissector - no packets, displayed when dissector specific filter applied

2009-05-01 Thread Stuart Marsden
Hi level dissect code with display filter sslbp -I get just my packets with display filter sslbp.type==0 or 1 - I get no displayed packets at all , but my printfs come out thanks Stuart dissect_sslbp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) { int offset = 0; p

[Wireshark-dev] Windows (XP VS2008) build from latest svn source exactly as per developers guide fails...

2009-04-20 Thread Stuart Marsden
a few files generated warnings and -wx (treat warnings as errors ) is set removing -wx from epan and epan/dissectors copies of Makefile.nmake let the build complete ok ___ Sent via:Wireshark-dev mailing list Archiv

[Wireshark-dev] new plug-in dissector - no packets displayed when dissector specific filter applied

2009-04-17 Thread Stuart Marsden
efs_register_protocol(proto_sslbp, NULL); } void proto_reg_handoff_sslbp(void) {    dissector_handle_t sslbp_handle;    sslbp_handle = create_dissector_handle(dissect_sslbp, proto_sslbp);    dissector_add("udp.port", 1, sslbp_handle); } - -- _