[Wireshark-dev] Re : Re: SMTP : Copying Data into a file

2008-04-30 Thread Auvray Julien
Hello everybody!! I’m trying to add script to create a file in the source “epan/dissectors/packet-smtp.c” when I send a mail. Then I have added : FILE *P_FICHIER; P_FICHIER = fopen (data2.txt, w); fclose(P_FICHIER); at the beginning of the function “dissect_smtp”. And when I start

[Wireshark-dev] SMTP : Copying Data into a file

2008-04-28 Thread Auvray Julien
Hello everybody !! First Thanks to Jaap and Sake who help me to set up my environment on Windows. Now, I would like to have some advices to complete my work. I have to copy all the data transferred into a mail (SMTP) into a file. I don't think I have to implement a new dissector because

Re: [Wireshark-dev] Re : Development environment on Windows XP

2008-04-26 Thread Auvray Julien
--- Message: 1 Date: Fri, 25 Apr 2008 18:00:52 +0200 From: Auvray Julien [EMAIL PROTECTED] Subject: [Wireshark-dev] Development environment on Windows XP To: wireshark-dev@wireshark.org Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=us-ascii Hello everybody, I've read on the wiki

[Wireshark-dev] Development environment on Windows XP

2008-04-25 Thread Auvray Julien
Hello everybody, I've read on the wiki that the installation of an development environment as mentioned in the developer's guide doesn't work. Is it right or not? Is it possible? And how? Thanks in advance Julien ___ Wireshark-dev mailing

[Wireshark-dev] How to develop a pluginin wireshark

2008-04-02 Thread Auvray Julien
Hello everybody, I'm a beginner in WireShark and I have a job that consist in developing a plug-in that will capture SMTP traffic. This plug-in has to do the following : - Capture only the smtp traffic - Save each e-mail sent in a file in a specific folder. That's why