Re: [Wireshark-dev] problem in developping a Wireshark plugin

2011-08-16 Thread Pascal Heude
Hi, If you want to develop a plug-in to dissect AFDX payload (non protocol based), included into a UDP packet, there is a more quicker solution : use the generic dissector named WSGD already developed as a wireshark dissector : here is the link to website. You have only

Re: [Wireshark-dev] Installing Plugin on an existing Wireshark installation

2008-08-10 Thread Pascal Heude
Hi, You can have a look to this site http://www.codeproject.com/KB/IP/custom_dissector.aspx and go to step 12. There is a short description of how to build a wireshark installer that you can give to your colleague. Pascal Jaap Keuter a écrit : Hi, There two parts to your question: 1.

Re: [Wireshark-dev] Custom dissector forgotten in building process

2008-05-13 Thread Pascal Heude
Hi, You will find here all the files/directories where I made modifications to add a new plugin : � - configure.in : add the new plugin (like for others plugins) � - config.h : change the name of version (to differentiate it from the official one) � - config.nmake : customize for my develop

Re: [Wireshark-dev] modifying the eth-dissector

2008-03-25 Thread Pascal Heude
Hi Valentin, I already developped 2 wireshark plugins (dll) to dissect AFDX payloads included in A380 CMS messages (System Identification Data and Normal Mode) .These 2 plugins are below UDP (like any other AFDX payload) and I use the UDP port number (constant for SID and NM) to call the func

Re: [Wireshark-dev] need help : NSIS

2008-02-23 Thread Pascal Heude
I'm sorry. I do not want to blame anyspan who partiticape/develop this fabulous project (Wireshark). I am only a french guy who try to add small bricks into this huge "wall" and sometimes I may not know the exact meaning of words. Regards. Pascal Ulf Lamping a écrit :

Re: [Wireshark-dev] need help : NSIS

2008-02-23 Thread Pascal Heude
les\, but that depends on your personal setup. Regards, ULFL Pascal Heude schrieb: Hi, I'm not sure we understand each other. Here after is the file before the modification (the WAS) : !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005" MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual

Re: [Wireshark-dev] need help : NSIS

2008-02-23 Thread Pascal Heude
the modification (the IS) : !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005" #MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 8\VC\redist\x86\Microsoft.VC80.CRT\*.* VCREDIST_EXE=$(WIRESHARK_LIBS)\vcredist_x86.exe Regards. Pascal Ulf Lamping a écrit : Pascal Heude schrie

Re: [Wireshark-dev] Win32 Setup fails

2008-02-21 Thread Pascal Heude
Hi, If you want some help, you should post the whole message, not only the last sentences. You can also find here after a great help for building the development environment under windows : http://www.codeproject.com/KB/IP/custom_dissector.aspx Pascal Padilla, Alex D a écrit :

Re: [Wireshark-dev] need help : NSIS

2008-02-19 Thread Pascal Heude
Hi, I had the same problem than bijjou200 and I found the following solution : - edit the config.nmake file (the one in the installation directory of wireshark) - copy the following line VCREDIST_EXE=$(WIRESHARK_LIBS)\vcredist_x86.exe between the following 2 lines (in the section "C-Runt

Re: [Wireshark-dev] [Help]Where I can find the wireshark recourses?

2008-02-05 Thread Pascal Heude
Hi, The internet link given by Jaap refers to an article that is very useful. I used it to write my own dissectors, compile and build my own version of wireshark which is currently used in my company. You also have a FAQ at the end of the article. Read it carefully. Pascal From: [EMAIL

Re: [Wireshark-dev] sed related error while building wireshark (0.99.7 version)

2008-01-05 Thread Pascal Heude
Hi, First of all, you should verify that you have installed the correct version of sed : - open a command - go to wireshark home directory - type "Nmake –f Makefile.nmake verify_tools" assuming that all the tools are in your path The result of is this command should look

Re: [Wireshark-dev] Trouble building wireshark: unrecognized command

2007-12-13 Thread Pascal Heude
Hi, The problem you have comes from the command line which calls the sed unix command. The option "-3" does not exist for sed. You may replace -3 by -e. I would also add double quote character (") after the first -e option, like this : sed -e "s/@VERSION@/0.3.1/" -e "s/@HAVE_LIBZ@/#define HAVE_

Re: [Wireshark-dev] new packet-usb-audio dissector?

2007-12-09 Thread Pascal Heude
Hi, There is a lot of documentation which help to develop plugin/dissector. Personaly, I wrote 2 plugins and I used an article found on internet : http://www.codeproject.com/KB/IP/custom_dissector.aspx And I also used one book : Nessus, Snort and Ethereal power tools. One remark about the

Re: [Wireshark-dev] nsis

2007-12-05 Thread Pascal Heude
Follow the link http://www.codeproject.com/KB/IP/custom_dissector.aspxand go to the bottom of the page where there are the FAQ. Look at themessage called "error when creating wireshark installer". I am sure youwill find� a solution to your problem. Pascal bijjou2000 a �crit�: hi i'm a be

Re: [Wireshark-dev] Distributing a wireshark dissector

2007-11-15 Thread Pascal Heude
You can create an installer (with NSIS for example) that can call theWireshark installer and then copy the dll in the plugin directory ofthe just installed wireshark (as wireshark does it to install thewinpcap). Pascal Anders Broman a écrit :Hi, Do you build with VC6? If not that's p

Re: [Wireshark-dev] startup error with my dissector

2007-11-12 Thread Pascal Heude
I got the same problem after having built my own dissector. I had to build my own executable file of wireshark (version 0.99.7 not yet frozen), and then copy the disector dll in the plugin subdirectory. For that I followed this great article : http://www.codeproject.com/useritems/custom_dissect

Re: [Wireshark-dev] what are the steps needed to add a plugin

2007-11-06 Thread Pascal Heude
Hello, I have written 2 plugins and I did exactly the same way twice. I don't think there is another possibility. Pascal Date: Tue, 6 Nov 2007 11:42:14 -0800 From: [EMAIL PROTECTED] To: wireshark-dev@wireshark.org Subject: [Wireshark-dev] what are the steps needed to add a plugin Greeting folk

Re: [Wireshark-dev] 0.99.6 build problems on Windows

2007-10-04 Thread Pascal Heude
There is a great article at that address (http://www.codeproject.com/useritems/custom_dissector.asp) which I used to build Wireshark under Windows XP, using cygwin as shell and Microsoft Visual C as compiler/linker. I'm sure you will find all you need to succeed. Regards. Pascal