Re: [Wireshark-dev] Help on installing wireshark on Windows XP

2009-11-09 Thread Siva S
Hi, I was running "\wireshark\wireshark-gtk2\wireshark.exe" only. Thanks & Regards, Siva S > > On Nov 9, 2009, at 8:09 AM, Siva S wrote: > >>Thanks for your reply. I also did the same and then it compiled >> properly. >>But, while executing the "wireshark.exe", I was getting this err

Re: [Wireshark-dev] Help on installing wireshark on Windows XP

2009-11-09 Thread Stephen Fisher
On Nov 9, 2009, at 8:09 AM, Siva S wrote: >Thanks for your reply. I also did the same and then it compiled > properly. >But, while executing the "wireshark.exe", I was getting this error. > >"The Application failed to initialize properly (0xc0150002). > Click OK > to terminate the

[Wireshark-dev] error as running 'distclean'

2009-11-09 Thread Joshua (Shiwei) Zhao
After I upgrade to 1.2.2, I met the following error when I run "nmake -f makefile.nmake distclean": NMAKE : fatal error U1077: 'k:\aliases\common\rm.BAT' : return code '0x' I haven't seen this when I used 1.0.4. Thanks, Joshua ___

[Wireshark-dev] Using regex.h and/or pcre.h in windows

2009-11-09 Thread Alex Lindberg
I have created a dissector that using the regex.h, part of libc6.  All is good when building and running on a Linux system.  When I move my code to a windows system to compile, it complains that ""regex.h - No Such File". All windows complies worked fine until the inclusion of regex.h. regex.h

[Wireshark-dev] STATUS_ACCESS_VIOLATION in 1.2.2

2009-11-09 Thread Joshua (Shiwei) Zhao
After I upgrade to 1.2.2, I start to see a lot of message like the following for 802.11 packets I caputre: [Dissector bug, protocol IEEE 802.11: STATUS_ACCESS_VIOLATION: dissector accessed an invalid memory address] Expert Info (Error/Malformed): STATUS_ACCESS_VIOLATION: dissector accessed an inva

Re: [Wireshark-dev] [Wireshark-commits] rev 30810: /trunk/ /trunk/gtk/: filter_dlg.c main_statusbar.c main_statusbar.h simple_dialog.c /trunk/: file.c simple_dialog.h

2009-11-09 Thread Gerald Combs
Stig Bjørlykke wrote: > On 6. nov. 2009, at 21.43, Gerald Combs wrote: > >> Do you have a theme applied? > > Yes. I'm using switch2 to select Clearlooks-Quicksilver on OSX, and > I'm using Human-Clearlooks on Ubuntu 9.10. Does this themes enable or > disable the ability to have a background

[Wireshark-dev] Appropriate action on a protocol failure?

2009-11-09 Thread J.C. Wren
My protocol payloads consists of one or more TLV (Type-Length-Values) sequences. The dissector decodes the various TLVs. Values represent various parameters to a commands. Right now if a value is out of range, I use DISSECTOR_ASSERT() for the test. I know this isn't the best way to do it, but I

[Wireshark-dev] Fop 0.95 (was Re: [Wireshark-commits] rev 30909)

2009-11-09 Thread Gerald Combs
I'm in the process of upgrading Fop in the Docbook toolchain from 0.20.5 to 0.95. If you build the PDF documentation you'll probably want to upgrade as well. ger...@wireshark.org wrote: > http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=30909 > > User: gerald > Date: 2009/11/09 10

Re: [Wireshark-dev] Wireshark 1.3.1 and python dissector

2009-11-09 Thread Joni Korhonen
Hello Sebastien, OK, I'll be following this project...well because python is python :-) Let us know when you have something Regards, Joni >From: Sébastien Tandel >Date: Mon, 9 Nov 2009 10:41:18 +0100 > >Hi Joni, > > >python dissectors is something highly experimental and not complete 'til now.

Re: [Wireshark-dev] Help on installing wireshark on Windows XP

2009-11-09 Thread Siva S
Hi, Thanks for your reply. I also did the same and then it compiled properly. But, while executing the "wireshark.exe", I was getting this error. "The Application failed to initialize properly (0xc0150002). Click OK to terminate the application" Can anyone help me on this?. Than

Re: [Wireshark-dev] Problem while compiling and running a plugin

2009-11-09 Thread Anders Broman
Hi, > Unhandled exception ("proto.c:4212: failed assertion "hfinfo->display == BASE_NONE"", group=1, code=4) One of the hf vars in your dissector has the wrong display type. Modify proto.c 4212 to: assert(hfinfo->display == BASE_NONE); And use the debugger to find the offendi

Re: [Wireshark-dev] How about moving from svn to git?

2009-11-09 Thread Bryant Eastham
Ulf Lamping wrote: > AFAIK, moving to git would be a big hurdle for Windows developers. Related to this, before considering such a change you could isolate as many of these Windows (and other) developers as possible: provide a plugin SDK (as part of the install, I would propose, or as a separate d

Re: [Wireshark-dev] Help on installing wireshark on Windows XP

2009-11-09 Thread BARILLY YANN
I met this problem last week too. I simply downloaded the asked libs from http://anonsvn.wireshark.org/wireshark/trunk/ Yann From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Siva S Sent: Wednesday, October 28

[Wireshark-dev] Problem while compiling and running a plugin

2009-11-09 Thread BARILLY YANN
Hi, I made in January a plug-in on an MSCV2005EE platform working fine (with .dll and .dll.manifest) Recently I updated my platform to work with msvc2008ee. I made the corrections to the files of the plug-in folder (CMakeLists.txt for example) as said in the README.plugin doc. I can compile b

Re: [Wireshark-dev] Wireshark 1.3.1 and python dissector

2009-11-09 Thread Sébastien Tandel
Hi Joni, python dissectors is something highly experimental and not complete 'til now. I made only one commit to the tree ;) The tests I made were only with tshark and on Linux. It appears that it is not working for windows nor with wireshark. I'm not sure why in the case of wireshark. I thought

[Wireshark-dev] Wireshark 1.3.1 and python dissector

2009-11-09 Thread Joni Korhonen
Hello, First of all, I was more than happy to hear that ws dissectors could also be done with python :-) Has there been any changes in how to use python dissector in ws 1.3.1? I tried the example showed in wiki page (http://wiki.wireshark.org/Python), but it didn't work at all: (register_protocol)