[Wireshark-dev] Can get asn2wrs to compile at all

2008-07-31 Thread Ruud Schramp
Hi All, this is probably a FAQ item, but I can't find it. I am trying to build a disector for a ASN1 description. I followed the description in http://wiki.wireshark.org/Asn2wrs but it seems thah asn2wrs isn't even called on ANY of the files in /asn1 Am I missing something stupig (e.g. a con

Re: [Wireshark-dev] Can get asn2wrs to compile at all

2008-07-31 Thread Anders Broman
Hi, Are you building on Windows or Unix? Did you model your makefiles on the ones for one of the existing dissectors? You then need to run make in the asn1 directory. You can also try to run make in the directory of your dissector to se that it'll work but doing that will not copy your dissector to

Re: [Wireshark-dev] Can get asn2wrs to compile at all

2008-07-31 Thread Ruud Schramp
Hi Anders and all others, found the solution and adjusted the wiki: One needs to run "make copy_files" in the asn1 directory Thanks for your responses, Ruud --- On Thu, 7/31/08, Anders Broman <[EMAIL PROTECTED]> wrote: > From: Anders Broman <[EMAIL PROTECTED]> > Subject: SV: [Wireshark-dev

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

2008-07-31 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/497 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: osx-10.5-x86 Build Reason: Buil

[Wireshark-dev] Conversation and TCP reassembly

2008-07-31 Thread Jens Steinhauser
Hi, I wrote a dissector for a protocol that runs atop of UDP and TCP. It uses conversations to save information from "Configuration Frames" that is needed to dissect the "Data Frames" later on. I also used the method with 'tcp_dissect_pdus()' to handle segmented PDUs. Everything works fine, excep

[Wireshark-dev] buildbot failure in Wireshark (development) on Ubuntu-7.10-x86-64

2008-07-31 Thread buildbot-no-reply
The Buildbot has detected a new failure of Ubuntu-7.10-x86-64 on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/Ubuntu-7.10-x86-64/builds/122 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: ubuntu-7.10-x86 Buil

[Wireshark-dev] How to write statistics of wireshark into MySQL database

2008-07-31 Thread justin
Hello everyone!This is the first time I use the mailing list. Recently I'm trying to write statistics of wireshark into MySQL database,and I really don't know what should I do. I will be extremely grateful if anyone could help me and tell me what to do. ___

Re: [Wireshark-dev] Conversation and TCP reassembly

2008-07-31 Thread Jaap Keuter
Hi, Guard creating a new conversation (conversation_new) by first checking if such conversation already exists (find_conversation). Then try to get the protocol data before creating and adding a new protocol data structure. Thanx, Jaap Jens Steinhauser wrote: > Hi, > > I wrote a dissector fo