Re: [Wireshark-dev] help for a 802.15.4 dissector

2007-01-21 Thread Jan Kokott
Hi, I have already written the Dissector, that could read the ZigBee frames like they are defined in the 802.15.4 IEEE standard. But as I donĀ“t know much about C my first version takes it, that the whole protocol works on UDP. It would be nice, to get a real data stream, but for now I am working

Re: [Wireshark-dev] [Patch] libwireshark.def

2007-01-21 Thread Gisle Vanem
"Stephen Fisher" <[EMAIL PROTECTED]> wrote: >> Some missing exports (needed by airpdcap*.c): > > Are these missing exports causing compilation to fail? Yes, it causes linking of programs that used libwireshark.lib (via ENABLE_LIBWIRESHARK) to fail due to said symbols used by airpdcap*.c. --gv _

Re: [Wireshark-dev] Q about new Help ! Manual Pages feature

2007-01-21 Thread Ulf Lamping
Bill Meier wrote: > First: The ability to view the user's manual and the man pages and etc in a > browser is really neat; nice work ! > Thanks :-) BTW: From 0.99.5 you'll be able to press a help button on various dialogs showing the corresponding section of the User's Guide - might be even

[Wireshark-dev] Q about new Help ! Manual Pages feature

2007-01-21 Thread Bill Meier
First: The ability to view the user's manual and the man pages and etc in a browser is really neat; nice work ! I'm using Firefox on Windows XP with Wireshark SVN 20522 built with MSVC 6. A few minor notes based upon some quick tests: 1. When I select Help ! Manual Pages ! Wireshark I get

[Wireshark-dev] Using Lua to parse TCP encapsulated IP protocol

2007-01-21 Thread Scott Robinson
Hi, I've been using Lua to create a dissector for a protocol that has IP encapsulated inside TCP with an additional header. Everything works fine until I try to create a new tvb off from a tvbsubrange. When I do this, Wireshark crashes. The new tvb appeared correct when I added debug statements (

Re: [Wireshark-dev] [PATCH] New menu items to copy packet data

2007-01-21 Thread Stephen Fisher
On Thu, Jan 11, 2007 at 01:59:56PM -, Douglas Pratley wrote: > This is a patch adding items to the context menus for the packet list > and packet details panes for copying packet data to the clipboard. Looking good so far. I fixed a few warnings about unused variables. BTW, if you have a

Re: [Wireshark-dev] [PATCH] BSSAP dissector handling RANAP DirectTransfers

2007-01-21 Thread Stephen Fisher
On Thu, Jan 18, 2007 at 06:29:37PM +0100, Tobias Witek wrote: > I found a rare situation in which the BSSAP dissector seems to wrongly > assume a packet. > My patch includes code that checks this very special case. I have committed your patch as SVN revision 20520. Thanks for your contributio

Re: [Wireshark-dev] [Patch] libwireshark.def

2007-01-21 Thread Stephen Fisher
On Tue, Jan 16, 2007 at 01:27:21PM +0100, Gisle Vanem wrote: > Some missing exports (needed by airpdcap*.c): Are these missing exports causing compilation to fail? Steve ___ Wireshark-dev mailing list Wireshark-dev@wireshark.org http://www.wireshark.

Re: [Wireshark-dev] Supply remote interface to wireshark

2007-01-21 Thread Stephen Fisher
On Sun, Jan 14, 2007 at 01:54:14PM +0200, sharon lin wrote: > How can I supply remote interface to wireshark which works on server. Are you trying to capture with a server while running Wireshark on a different machine? Steve ___ Wireshark-dev mailin

Re: [Wireshark-dev] tshark output format

2007-01-21 Thread Stephen Fisher
On Thu, Jan 11, 2007 at 03:32:43PM +0100, Sebastien Tandel wrote: >I am developing an analysis of the events occurring in ISIS. This > analysis should be an help to network operators to detect problems in > their network. Of course, to do this we have to present the results of > the analysi

Re: [Wireshark-dev] help for a 802.15.4 dissector

2007-01-21 Thread Stephen Fisher
On Thu, Jan 11, 2007 at 02:00:56PM +0100, Jan Kokott wrote: > as it seems, no one started a dissector for ZigBee Packages. I am > still building up my compiler and environment, to accept and compile > .nmake files. As far as I understand it, the libpcap/winpcap can??t > read 802.15.4 data-strea

Re: [Wireshark-dev] Consensus needed on bug #813

2007-01-21 Thread Stephen Fisher
On Sat, Jan 06, 2007 at 02:19:25PM +0100, Jaap Keuter wrote: > Implement the change, but make the current line a hidden item, so the > filter expressions remain valid. I know we shouldn't make hidden items > since people won't know that they can filter on them, but that is just > the point here

Re: [Wireshark-dev] [PATCH] Fixup for a segfault with gtk1.2

2007-01-21 Thread Stephen Fisher
On Thu, Jan 18, 2007 at 01:55:05AM +0100, Sebastien Tandel wrote: >just a remember for this patch against a crash of wireshark with > gtk1.2 when using packet length statistics window. The crash was due > to a difference of implementation of g_strsplit between gtk1.2 and > gtk2. Thanks for

Re: [Wireshark-dev] Define dissector port

2007-01-21 Thread Jaap Keuter
Hi, Lets see how it works. From packet.c: heur_dissector_add() { sub_dissectors = find_heur_dissector_list(name); *sub_dissectors = g_slist_append(*sub_dissectors, (gpointer)dtbl_entry); } Where name is "tcp" and dtbl_entry is your protocols dissector information. When the TCP dissector is

Re: [Wireshark-dev] Define dissector port

2007-01-21 Thread Guy Harris
Hal Lander wrote: > There is a function > /* Find a dissector table by table name. */ > extern dissector_table_t find_dissector_table(const char *name); > > So after I have added my heuristic dissector I should be able to call > tbl=find_dissector_table("tcp"); > > and see my disse

Re: [Wireshark-dev] Define dissector port

2007-01-21 Thread Hal Lander
Thanks Jaap, I used heur_dissector_add for the parent protocol "tcp" and things seem to be working. I would like to understand a bit more about what is going on though. There is a function /* Find a dissector table by table name. */ extern dissector_table_t find_dissector_table(const c

Re: [Wireshark-dev] [Wireshark-commits] rev 20515: /trunk/epan/wslua/ /trunk/epan/wslua/: template-init.lua

2007-01-21 Thread Luis Ontanon
Gerald, this should go in 0.99.5 On 1/21/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=20515 > > User: lego > Date: 2007/01/21 05:06 PM > > Log: > fix bug 1321 > > Directory: /trunk/epan/wslua/ > ChangesPath

Re: [Wireshark-dev] [Wireshark-commits] rev 20514: /trunk/epan/wslua/ /trunk/epan/wslua/: wslua_gui.c

2007-01-21 Thread Luis Ontanon
this should go into 0.99.5 On 1/21/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=20514 > > User: lego > Date: 2007/01/21 05:05 PM > > Log: > fix bug 1320 > > Directory: /trunk/epan/wslua/ > ChangesPath Action >