Re: [Wireshark-dev] Eclipse project for Wireshark

2011-01-21 Thread Graham Bloice
On 20/01/2011 21:26, Dietfrid Mali wrote: I could as well analyze the automake hell Wireshark comes with. ^_^ Btw, I would have happily used the Wireshark VS solution to see how to add spandsp codecs, but to my horror I found out that it used some nmake hell just as well ... and required bash

Re: [Wireshark-dev] Eclipse project for Wireshark

2011-01-21 Thread Guy Harris
On Jan 21, 2011, at 12:46 AM, Graham Bloice wrote: The reason that the windows build still uses other tools and nmake is that no-one has found the time and motivation to create, and most importantly maintain, a VS solution for Wireshark. Note that maintain includes allow developers using

Re: [Wireshark-dev] snmp decoding ...ubuntu smi issue ?... different then on windows XP ...?

2011-01-21 Thread Andrew Hood
Apologies in advance for the tone, but some actions are inexcusable. Jaap Keuter wrote: Hi, Some history: libsmi doesn't provide MIBs any more, due to Debian bug 498476 [7] The bug belongs to Debian, not libsmi. limsmi provides MIBs. Debian chooses to not include them. MIB

Re: [Wireshark-dev] Eclipse project for Wireshark

2011-01-21 Thread Dietfrid Mali
Hi Jaap, thanks for the info. I have given up on trying to build Wireshark with Eclipse. It's too much of a mess. How do I configure the regular Linux make for debugging? With --enable_debug=yes, or how else please? Date: Thu, 20 Jan 2011 23:01:00 +0100 From: jaap.keu...@xs4all.nl To:

[Wireshark-dev] Header field (hf_) in packet-ieee80211.c

2011-01-21 Thread Alexis La Goutte
Hi, I work on the file packet-ieee80211.c and I found that some header field ( tag_interpretation, cf_version ...) will not begin by hf_ There is a historic reason ? Because if I'm not mistaken, The checkhf.pl file only verified header fields starting with hf_ ? Regards,

Re: [Wireshark-dev] Header field (hf_) in packet-ieee80211.c

2011-01-21 Thread Anders Broman
Alexis La Goutte skrev 2011-01-21 17:32: Hi, I work on the file packet-ieee80211.c and I found that some header field (tag_interpretation, cf_version ...) will not begin by hf_ There is a historic reason ? Yes, the historic reason being that it slipped trough ;-) There is a lot of stuff that

Re: [Wireshark-dev] Eclipse project for Wireshark

2011-01-21 Thread Guy Harris
On Jan 21, 2011, at 3:57 AM, Dietfrid Mali wrote: How do I configure the regular Linux make for debugging? With --enable_debug=yes, or how else please? For debugging in what sense? If you're building from SVN, I think it compiles with -g by default (it certainly does so on OS X, and I

Re: [Wireshark-dev] ANSI C12.22

2011-01-21 Thread Christopher Maynard
Dubrawsky, Ido Ido.Dubrawsky@... writes: I’ve noticed that an ANSI C12.22 dissector is now a part of the 1.5.0 development branch in Wireshark (it appears to have been added in around the time of SVC Rev. 35292).  I’ve downloaded the 1.5.0 SVN Rev 35597 build for Win32 executable but cannot seem

Re: [Wireshark-dev] Header field (hf_) in packet-ieee80211.c

2011-01-21 Thread Stephen Fisher
On Fri, Jan 21, 2011 at 06:55:51PM +0100, Anders Broman wrote: I think the hf variables should be prefixed with hf_ieee80211 to follow the style of other dissectors, unfortunately that's a bit long, hf_80211, hf_wifi? if hf_ieee80211 is used throughout it's ease to shorten it later. How