[Wireshark-dev] To create a wireshark installer

2007-08-02 Thread Hongxiang GUO
Hi, I am trying to install the wireshark built with [EMAIL PROTECTED] on another PC. But when I launch the installed wireshark.exe, it warns the missing of msvcr80.dll. According to Matthias's advice (http://www.wireshark.org/lists/wireshark-dev/200703/msg00628.html), actually the issue comes

Re: [Wireshark-dev] [Wireshark-commits] rev 22439: /trunk/epan/wslua/ /trunk/epan/wslua/: Makefile.am Makefile.common Makefile.nmake

2007-08-02 Thread Guy Harris
Joerg Mayer wrote: On Thu, Aug 02, 2007 at 07:54:07AM +, [EMAIL PROTECTED] wrote: http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=revrevision=22439 ... Don't put $(srcdir)/ at the beginning of those file names - other Makefile.am files don't have it, and it appears to break make

Re: [Wireshark-dev] [Wireshark-commits] rev 22439: /trunk/epan/wslua/ /trunk/epan/wslua/: Makefile.am Makefile.common Makefile.nmake

2007-08-02 Thread Joerg Mayer
On Thu, Aug 02, 2007 at 01:48:59AM -0700, Guy Harris wrote: Joerg Mayer wrote: On Thu, Aug 02, 2007 at 07:54:07AM +, [EMAIL PROTECTED] wrote: http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=revrevision=22439 ... Don't put $(srcdir)/ at the beginning of those file names - other

Re: [Wireshark-dev] [Wireshark-commits] rev 22439: /trunk/epan/wslua/ /trunk/epan/wslua/: Makefile.am Makefile.common Makefile.nmake

2007-08-02 Thread Guy Harris
Joerg Mayer wrote: This is not an automake problem, the problem is triggered by the following snippet in Makefile.am declare_wslua.h: make-reg.pl $(wslua_modules) taps_wslua.c $(PERL) $(srcdir)/make-reg.pl $(wslua_modules); and is (in the end) caused by make-reg.pl which wasn't

[Wireshark-dev] review_for_checkin requested: [Bug 1724] [PATCH] packet-bootp.c: enhancement to decode DHCP option 249

2007-08-02 Thread bugzilla-request-daemon
Francois-Xavier Le Bail [EMAIL PROTECTED] has asked for review_for_checkin: Bug 1724: [PATCH] packet-bootp.c: enhancement to decode DHCP option 249 http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1724 ___ Wireshark-dev mailing list

Re: [Wireshark-dev] [PATCH] packet-bootp.c: enhancement to decode DHCP option 121

2007-08-02 Thread Francois-Xavier Le Bail
Hi, I Agree with you, patch sent. Regards, Francois-Xavier Le Bail --- Graham Bloice [EMAIL PROTECTED] wrote: Jaap Keuter wrote: Hi, Checked in. Thanx, Jaap Francois-Xavier Le Bail wrote: Hi, The following patch decode DHCP option 121. (RFC 3442) Output example

[Wireshark-dev] review_for_checkin requested: [Bug 1724] [PATCH] packet-bootp.c: enhancement to decode DHCP option 249

2007-08-02 Thread bugzilla-request-daemon
Francois-Xavier Le Bail [EMAIL PROTECTED] has asked for review_for_checkin: Bug 1724: [PATCH] packet-bootp.c: enhancement to decode DHCP option 249 http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1724 ___ Wireshark-dev mailing list

Re: [Wireshark-dev] To create a wireshark installer

2007-08-02 Thread Gianluca Varenni
You need to install the VC runtime build 762 on the target machine. That is the easiest way to have a version of Wireshark built with Visual Studio 2005 Express Edition SP1 running on a machine.

[Wireshark-dev] No fonts found error

2007-08-02 Thread Fulko Hew
The last (apparent) step in getting Wirehark built for an embedded system had given me a roadblock. When I run Wireshark I get: No fonts found; this probably means that the fontconfig library is not correctly configured. You may need to edit the fonts.conf configuration file. More information

[Wireshark-dev] XML Decoding

2007-08-02 Thread Rick Gudmundson
Suppose I've got a protocol that is simply XML running over TCP. I know that Wireshark is capable of dissecting XML data from HTTP packets, etc. What's the shortest/easiest way to dissect a conversation just as XML? Does it require a new XML dissector? Rick

Re: [Wireshark-dev] XML Decoding

2007-08-02 Thread Jeff Morriss
Should the XML dissector have a port (range) preference? Would be easier than LUA... Luis EG Ontanon wrote: No, it would be enough to have the XML dissector register for the given port in the tcp.port table. Or have the heuristic dissector register for TCP, but that would be expensive.

Re: [Wireshark-dev] XML Decoding

2007-08-02 Thread Luis EG Ontanon
No, it would be enough to have the XML dissector register for the given port in the tcp.port table. Or have the heuristic dissector register for TCP, but that would be expensive. -- lua snipplet that registers XML on tcp port 12345 DissectorTable.get(tcp.port):add(12345, Dissector.get(xml));

Re: [Wireshark-dev] XML Decoding

2007-08-02 Thread Luis EG Ontanon
A tcp.port (range) and/or to register the heuristic dissector for those cases where there's not necessarily a known port On 8/2/07, Jeff Morriss [EMAIL PROTECTED] wrote: Should the XML dissector have a port (range) preference? Would be easier than LUA... Luis EG Ontanon wrote: No, it

Re: [Wireshark-dev] [Wireshark-commits] rev 22439: /trunk/epan/wslua/ /trunk/epan/wslua/: Makefile.am Makefile.common Makefile.nmake

2007-08-02 Thread Guy Harris
Luis EG Ontanon wrote: But I do not understand what's exactly wrong with that script, and how, in your view, it should be working. It needs to be able to take a list of file names (rather than full path names), and find those files in $(srcdir) (which could be passed as the first argument to

[Wireshark-dev] Displaying interface names in Wireshark

2007-08-02 Thread Sake Blok
Hi, I'm in the process of adding support for the NetScreen snoop file format. The basics are already finished (see bug 1717). Right now I'm working on selecting the right link-layer type for each packet as packets from different types of interfaces can be in the same file. On top of showing every

Re: [Wireshark-dev] [Wireshark-commits] rev 22439: /trunk/epan/wslua/ /trunk/epan/wslua/: Makefile.am Makefile.common Makefile.nmake

2007-08-02 Thread Joerg Mayer
On Thu, Aug 02, 2007 at 08:10:54PM +0200, Luis EG Ontanon wrote: But I do not understand what's exactly wrong with that script, and how, in your view, it should be working. Guy already explained what is wrong. The motivation behind this: When doing an out-of-tree build (if you want to test, do

[Wireshark-dev] review_for_checkin cancelled: [Bug 1717] Add support for the (Juniper) NetScreen snoop file format

2007-08-02 Thread bugzilla-request-daemon
Sake [EMAIL PROTECTED] has cancelled Sake [EMAIL PROTECTED]'s request for review_for_checkin: Bug 1717: Add support for the (Juniper) NetScreen snoop file format http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1717 ___ Wireshark-dev mailing list

Re: [Wireshark-dev] To create a wireshark installer

2007-08-02 Thread Hongxiang GUO
Hi, GV! I rebuilt the wireshark with the VS2005 SP1 redistribution package, now the problem is solved. Thanks! regards, Guo Gianluca Varenni wrote: You need to install the VC runtime build 762 on the target machine. That is the easiest way to have a version of Wireshark built with Visual

Re: [Wireshark-dev] Wireshark Logo/Icons

2007-08-02 Thread Rodney Dawes
Hi again, I am not subscribed to the list, and have not received any of your replies in my personal mailbox. In the future please use Reply to All so that I will get a copy. Thanks. Given the situation, I'll just copy and paste from the web archives, for my replies. Guy Harris wrote: ...at

Re: [Wireshark-dev] Wireshark Logo/Icons

2007-08-02 Thread Gerald Combs
Rodney Dawes wrote: Gerald Combs wrote: I'm not opposed to changing the current icon set, but it's important to keep an element of the Wireshark logo in order to maintain our brand recognition. I'm also concerned that your icons are a little too similar to the current logo, and might dilute