Re: [Wireshark-dev] How to handle Ethernet frames with FCS, malformed packet in PN dissector

2011-09-27 Thread HPfrommer
Seems to work perfect now! -Ursprüngliche Nachricht- Von: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] Im Auftrag von Guy Harris Gesendet: Montag, 26. September 2011 22:56 An: Developer support list for Wireshark Betreff: Re: [Wireshark-dev] How to han

[Wireshark-dev] How to handle Ethernet frames with FCS, malformed packet in PN dissector

2011-09-26 Thread HPfrommer
Hi, I'm currently implementing a new pcap link-layer type which contains an Ethernet frame including the FCS (see LINKTYPE_NETANALYZER on http://www.tcpdump.org/linktypes.html). Now I have observed a problem with the PROFINET dissector, I'm not sure how to deal with it, and I'm not sure if even

Re: [Wireshark-dev] Enhancement of built-in dissector

2011-08-30 Thread HPfrommer
Hi Guy, thanks for your feedback, I will request a new LINKTYPE. -Ursprüngliche Nachricht- Von: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] Im Auftrag von Guy Harris Gesendet: Freitag, 26. August 2011 12:09 An: Developer support list for Wireshark Be

[Wireshark-dev] Enhancement of built-in dissector

2011-08-26 Thread HPfrommer
Hi, some time ago I submitted a patch (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6082) to enhance some features of a built in dissector. Unfortunately, nothing happened so far. I know you guys are quite busy, but I would appreciate if someone could check the patch, to have it availabl

[Wireshark-dev] How to determine if Wireshark is x86 or x64

2010-01-14 Thread HPfrommer
Hi, I've developed a custom dissector which shall be installed to "...\application data\wireshark\plugin" automatically during installation of our product on Windows (Wireshark itself is not included in this installer). See http://www.wireshark.org/lists/wireshark-dev/200810/msg00208.html I've bu

Re: [Wireshark-dev] [HELP]How to dissect a packet withouta protocol? It can only be digged out by i

2008-02-22 Thread HPfrommer
With this method you have to dissect the whole frame, including the MAC addresses, ethertyp, vlan tag, etc.. Maybe someone knows another method to keep the original Ethernet header info? Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von yenan Ge

Re: [Wireshark-dev] [HELP]How to dissect a packet without a protocol? It can only be digged out by its Dst Mac or Vlan I

2008-02-21 Thread HPfrommer
Hi Nan, you can easily register to a MAC address or any other byte in a frame by using a heuristic dissector. Register the dissector: heur_dissector_add("eth", dissect_foo_heur, proto_foo); Use this dissector function: static gboolean dissect_foo_heur(tvbuff_t *tvb, packet_info *p

[Wireshark-dev] Including new dissector to wireshark development branch

2008-01-16 Thread HPfrommer
Hello, I've written a dissector for a special analyzer protocol we have developed here in my company. I'd like to ask if it's possible to include this dissector into the Wireshark development branch. If you're ok with including our dissector, maybe it would be the best if you can create a pat

Re: [Wireshark-dev] Register dissector to MAC address

2007-11-13 Thread HPfrommer
Thanks for your advises, I will check if I can find a way to do heuristic dissecting. Holger Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Maynard, Chris Gesendet: Montag, 12. November 2007 23:13 An: Developer support list for Wireshark Betre

[Wireshark-dev] Register dissector to MAC address

2007-11-12 Thread HPfrommer
Hi, I have an application where I receive specially formed frames from a specific unique MAC address. Is it possible to register my dissector to a MAC address? All I was able to do was registering a dissector to an ethertype like follows: dissector_add("ethertype", 0x88ff, test_dissector

Re: [Wireshark-dev] Displaying interface names in Wireshark

2007-08-03 Thread HPfrommer
Hi, I'm also very interested in displaying Interface IDs in an additional column (like e.g. timestamps). I've seen that the pcap packet header contains a field "Interface ID" which seems to be currently unused in Wireshark? Would it be possible to add this Interface ID to the packet info, so it

Re: [Wireshark-dev] Missing export in libwireshark (tap)

2007-07-29 Thread HPfrommer
;-) Ok, thank you! -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Jeff Morriss Gesendet: Freitag, 27. Juli 2007 16:24 An: Developer support list for Wireshark Betreff: Re: [Wireshark-dev] Missing export in libwireshark (tap) [EMAIL PROTECTED] wro

[Wireshark-dev] Missing export in libwireshark (tap)

2007-07-27 Thread HPfrommer
Hi, I was trying to use the tap-feature (epan/tap.c) in my dissector. Unfortunately, the linker cannot find the function "fetch_tapped_data". Is there any reason, why this function is not included the exports of libwireshark.def? Regards, Holger Hilscher Gesellschaft fur Systemautom

Re: [Wireshark-dev] Bugfix for plugins/profinet

2007-07-23 Thread HPfrommer
Hi, attached you'll find a short capture of three frames. Regards, Holger -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Ulf Lamping Gesendet: Montag, 23. Juli 2007 21:51 An: Developer support list for Wireshark Betreff: Re: [Wireshark-dev] Bu

[Wireshark-dev] Bugfix for plugins/profinet

2007-07-23 Thread HPfrommer
Hi, I've fixed a bug in the Profinet-Dissector (plugins/profinet/packet-dcerpc-pn-io.c). In PROFINET IO DCE RPC write-requests, only the first IR frame dataset in PDIRFrameData was dissected. I've fixed the problem, now all IR frame datasets are dissected into individual sub-trees. svn di