[Wireshark-dev] LUA: Editing the protocol column

2008-06-05 Thread Rowswell, Brent
Hello, I'm working on developing a dissector with LUA, and so far all of the dissection has been fairly easy to make. What I was wondering is if there was a way to take my LUA dissector, grab out a packet and change it in a way that wireshark will display the change, so that we can filter out the

Re: [Wireshark-dev] *** No rule to make target `inet_pton.lo', needed by `libwireshark.la'. Stop.

2008-06-05 Thread Guillaume Bienkowski
BIENKOWSKI Guillaume [FR] a écrit : > > Hello guys, > > I have a problem compiling Wireshark 1.0.0; I get the following error: > > make[3]: Entering directory `/home/gbien/work/wireshark-1.0.0/epan' > make[3]: *** No rule to make target `inet_pton.lo', needed by > `libwireshark.la'. Stop. > make[3

[Wireshark-dev] buildbot failure in Wireshark (development) on Windows-XP-x86

2008-06-05 Thread buildbot-no-reply
The Buildbot has detected a new failure of Windows-XP-x86 on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/Windows-XP-x86/builds/4433 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: windows-xp-x86 Build Reason

[Wireshark-dev] buildbot failure in Wireshark (development) on OSX-10.5-x86

2008-06-05 Thread buildbot-no-reply
The Buildbot has detected a new failure of OSX-10.5-x86 on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/OSX-10.5-x86/builds/159 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: osx-10.5-x86 Build Reason: Buil

[Wireshark-dev] Working with pcap

2008-06-05 Thread Nicholas Marra
I'm attempting to use pcap to compare time intervals. I need to know how Wireshark implements pcap. Is there any good info out there? Nick ___ Wireshark-dev mailing list Wireshark-dev@wireshark.org https://wireshark.org/mailman/listinfo/wireshark

[Wireshark-dev] buildbot failure in Wireshark (development) on OSX-10.5-x86

2008-06-05 Thread buildbot-no-reply
The Buildbot has detected a new failure of OSX-10.5-x86 on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/OSX-10.5-x86/builds/163 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: osx-10.5-x86 Build Reason: Buil

[Wireshark-dev] dynamic dissector

2008-06-05 Thread Chris Barlas
I have been tasked to determine if it's possible to write a dynamic dissector for wireshark which reads an XML file for the message structures/protocol information. I have been reading the dev docs but haven't really been able to affirm or deny the possibility. I know RTFM is the best way, but wi

Re: [Wireshark-dev] Working with pcap

2008-06-05 Thread Guy Harris
Nicholas Marra wrote: > I’m attempting to use pcap to compare time intervals. I need to know how > Wireshark implements pcap. Is there any good info out there? What do you mean by "implements pcap"? All libpcap/WinPcap do is let you capture packets; determining the interval between packets (whi

Re: [Wireshark-dev] *** No rule to make target `inet_pton.lo', needed by `libwireshark.la'. Stop.

2008-06-05 Thread Guillaume Bienkowski
Ok I answer to myself The file inet_pton.c seems to be misplaced in the root directory, instead of being in epan/. This causes the make to output an error, not finding the inet_pton.c file. I found a solution to compile correctly on a Japanese website which had the very same problem in

[Wireshark-dev] Windows 2K installation of Wireshar 1.0.0

2008-06-05 Thread Nicholas Marra
Hello, I've been trying to install Wireshark 1.0.0 on a Windows 2K platform and I'm getting the following error: "wireshark.exe is not a valid Win32 application" I've successfully installed 1.0.0 on XP platforms but there appears to be an issue with 2K. Does anyone have a suggestion?

[Wireshark-dev] Build Failure.Please help!!

2008-06-05 Thread Kumar, Hemant
Hello all I am a new user of Wireshark1.0.0 and an setting up my build environment on WindowsXP. I have followed the instructions as mentioned in the Developer user guide and everything was working fine until I encountered this problem. When I run the command nmake -f makefile.nmake setup it

Re: [Wireshark-dev] Working with pcap

2008-06-05 Thread Rob MacKenzie
http://wiki.wireshark.org/Development/LibpcapFileFormat That's a description of the format. If you want to analyze timestamps, it is trivial to do so with the packet times inside the packet header. I wrote a python app to do precisely that a while back. Like Guy Harris said, the Pcap file is ver

Re: [Wireshark-dev] Build Failure.Please help!!

2008-06-05 Thread Jaap Keuter
Hi, Seems like a budged download. Can you open the zipfile by yourself? Otherwise just delete it and setup again. Thanx, Jaap _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kumar, Hemant Sent: 2008-Jun-05 19:33 To: wireshark-dev@wireshark.org Cc: [EMAIL PROTECTED] Su

Re: [Wireshark-dev] Build Failure.Please help!!

2008-06-05 Thread Kumar, Hemant
Hello I tried to delete and setup again but it again fails with the same message. So I downloaded all the required libraries from the link http://anonsvn.wireshark.org/wireshark-win32-libs/tags/2008-03-17/packages/ and instead of doing setup I went for the build with the command nmake -f makefil

[Wireshark-dev] Build Failure.Please help!!

2008-06-05 Thread Kumar, Hemant
Sorry I used the command for building the wireshark.exe nmake -f makefile.nmake all instead of what is mentioned in the mail below. Thanks Hemant From: Kumar, Hemant Sent: Thursday, June 05, 2008 1:10 PM To: 'Developer support list for Wireshark' Subject: RE: [

[Wireshark-dev] FW: Build Failure.Please help!!

2008-06-05 Thread Kumar, Hemant
Hello I got around this problem by modifying the statement in Makefile in Wireshark directory.Just modified the --reference=Makefile.nmake to -r Makefile.nmake. Another problem which I am facing now is related to Bison.exe.I get the following error now. bison -d -p ascend ascend-grammar

Re: [Wireshark-dev] FW: Build Failure.Please help!!

2008-06-05 Thread Bill Meier
Kumar, Hemant wrote: > > > I got around this problem by modifying the statement in Makefile in > Wireshark directory.Just modified the -*–reference=Makefile.nmake *to > *–r Makefile.nmake*. > > > Another problem which I am facing now is related to Bison.exe.I get the > following error now.

[Wireshark-dev] Obtaining protocol offsets from dissection results

2008-06-05 Thread Eloy Paris
Hello, For each layer (protocol) in a packet I need to obtain the offset into the packet. For example, for "eth:ip:icmp:data", the offsets would be: eth: 0 ip: 14 (IP with no options) icmp: 34 (ICMP echo request) data: 42 I have been using the value of the "start" field of "s

Re: [Wireshark-dev] Obtaining protocol offsets from dissection results

2008-06-05 Thread Guy Harris
Eloy Paris wrote: > For each layer (protocol) in a packet I need to obtain the offset into > the packet. For example, for "eth:ip:icmp:data", the offsets would be: > > eth: 0 > ip: 14 (IP with no options) > icmp: 34 (ICMP echo request) > data: 42 > > I have been using the val

Re: [Wireshark-dev] Build Failure.Please help!!

2008-06-05 Thread Jaap Keuter
Hi, Looks like you'll need to update your cygwin installation. Thanx, Jaap _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kumar, Hemant Sent: 2008-Jun-05 22:10 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Build Failure.Please help!! Hello