Re: [Wireshark-dev] New --with-libsmi option

2007-08-27 Thread Luis EG Ontanon
that's in the TODO list... I'm building using: env CFLAGS=/opt/include LDFLAGS=/opt/lib ../configure ... On 8/28/07, Stephen Fisher <[EMAIL PROTECTED]> wrote: > Shouldn't the new configure script option --with-libsmi allow you to > specify a directory to find the library in instead of just being a

Re: [Wireshark-dev] [Wireshark-commits] rev 22661: /trunk/ /trunk/aclocal-fallback/: libsmi.m4 /trunk/epan/: oids.c /trunk/: configure.in

2007-08-27 Thread Jaap Keuter
Hi, Included remarks inline Thanx, Jaap Luis EG Ontanon wrote: > If you try to compile packet-user_encap.c do you get the same error Yes, same warning. Doesn't stop the build since it's not a 'clean' dissector. > and epan/dfilter/dfilter-macro.c what happens with that? No warnings here.

[Wireshark-dev] smi_modules

2007-08-27 Thread Anders Broman
Hi, On Windows Wireshark crashes when trying to load "SNMP-REPEATER-MIB". Regards Anders ___ Wireshark-dev mailing list Wireshark-dev@wireshark.org http://www.wireshark.org/mailman/listinfo/wireshark-dev

[Wireshark-dev] New --with-libsmi option

2007-08-27 Thread Stephen Fisher
Shouldn't the new configure script option --with-libsmi allow you to specify a directory to find the library in instead of just being a yes/no? BTW, I just tried using --with-libsmi with the directory (before I realized it was a yes/no) and it bailed out of configure with this: configure: error:

Re: [Wireshark-dev] [Wireshark-bugs] [Bug 1800] New: Missing 802.11 WMM TSPEC dissector fixes

2007-08-27 Thread Stig Bjørlykke
Den 27. aug. 2007 kl. 07.30 skrev [EMAIL PROTECTED]: > It seems that the WMM TSPEC dissector fixes introduced in SVN rev > 21450 were > overwritten in rev 21482. > > Since rev 21482 description doesn't mention the change, I assume it > was just a > merging accident. Hi Tuomas. Do you have a

Re: [Wireshark-dev] Expert Infos are a bit "more official" now!

2007-08-27 Thread Ulf Lamping
Stratemeier, Frank schrieb: > Yo Chris! > > I had the same problem and was just wondering why. > It seems that "Expert Info" rescans a capture passing no valid tree > pointer. "Expert Info Composite" does indeed pass a valid tree pointer!. > So in my dissector the EIC makes much more sense. You

Re: [Wireshark-dev] [Wireshark-commits] rev 22661: /trunk/ /trunk/aclocal-fallback/: libsmi.m4 /trunk/epan/: oids.c /trunk/: configure.in

2007-08-27 Thread Luis EG Ontanon
If you try to compile packet-user_encap.c do you get the same error and epan/dfilter/dfilter-macro.c what happens with that? can you try void** sm = &(smi_modules); and then passing sm to uat_new() or cast it to (void*) instead of (void**) or passing &((void*)smi_modules) On 8/27/07,

Re: [Wireshark-dev] [Wireshark-commits] rev 22661: /trunk/ /trunk/aclocal-fallback/: libsmi.m4 /trunk/epan/: oids.c /trunk/: configure.in

2007-08-27 Thread Jaap Keuter
Hi, Sorry, no luck :-( Thanx, Jaap Luis EG Ontanon wrote: > I got it... Optimizer is smart enough to reduce struct smi_module_t { > char* name; } into char* but not insightfull enought to knwo it did it > itself. > > if you change (in line 179) > > typedef struct smi_module_t { > char*

[Wireshark-dev] review_for_checkin requested: [Bug 1803] "F" display filter field problems

2007-08-27 Thread bugzilla-request-daemon
Chris Maynard <[EMAIL PROTECTED]> has asked for review_for_checkin: Bug 1803: "F" display filter field problems http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1803 ___ Wireshark-dev mailing list Wireshark-dev@wireshark.org http://www.wireshark.org/ma

Re: [Wireshark-dev] Win2000 Error: wireshark.exe is not a valid Win32 application

2007-08-27 Thread Greg Bell
Thanks for that reply. I'm glad someone confirmed it works using VC 2005EE. What about the Platform SDK, did you use Server 2003 R2? Regarding your mods, 2. We're referring to C:\wireshark-0.99.6\tools\win32-setup.sh right? 3. Do you replace all occurences of xcopy (in if statements only

[Wireshark-dev] review_for_checkin requested: [Bug 1802] "E" display filter field problems

2007-08-27 Thread bugzilla-request-daemon
Chris Maynard <[EMAIL PROTECTED]> has asked for review_for_checkin: Bug 1802: "E" display filter field problems http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1802 --- Additional Comments from Chris Maynard <[EMAIL PROTECTED]> Although these changes are minor, I was unable to actually fuz

[Wireshark-dev] From Capture Device to Dissector

2007-08-27 Thread Audet, Jean-Michel
Hi, I am starting to have success with my new i2c capture device. I have a dissector that was working with an external generated file using test2pcap. I have my new DLT number (199) for I2c/IPMB packet type. Now, I would like to connect my new captures with the dissector. I ha

Re: [Wireshark-dev] SNMP/MIBs TO DO

2007-08-27 Thread Luis EG Ontanon
On 8/27/07, Joerg Mayer <[EMAIL PROTECTED]> wrote: > On Mon, Aug 27, 2007 at 12:21:17AM +0200, Luis EG Ontanon wrote: > > Setting the environment variable WIRESHARK_DEBUG_MIBS to 1 or more > > should get print-outs for these. > > Maybe that should be turned into a prefs setting? Preferences is way

Re: [Wireshark-dev] SNMP/MIBs TO DO

2007-08-27 Thread Luis EG Ontanon
I knew that asn2wrs generated these but I thought the oids were created from within (I even spent some time trying to figure out where they came from) L On 8/27/07, Kukosa, Tomas <[EMAIL PROTECTED]> wrote: > > - There are others that attempt to be registered with "funky" oid > > strings "dop.agre

Re: [Wireshark-dev] [Wireshark-commits] rev 22661: /trunk/ /trunk/aclocal-fallback/: libsmi.m4 /trunk/epan/: oids.c /trunk/: configure.in

2007-08-27 Thread Luis EG Ontanon
I got it... Optimizer is smart enough to reduce struct smi_module_t { char* name; } into char* but not insightfull enought to knwo it did it itself. if you change (in line 179) typedef struct smi_module_t { char* name; } smi_module_t; to typedef struct smi_module_t { void* dumm

Re: [Wireshark-dev] [Wireshark-commits] rev 22661: /trunk/ /trunk/aclocal-fallback/: libsmi.m4 /trunk/epan/: oids.c /trunk/: configure.in

2007-08-27 Thread Luis EG Ontanon
On 8/27/07, Joerg Mayer <[EMAIL PROTECTED]> wrote: > On Mon, Aug 27, 2007 at 08:47:22AM +0200, Thomas Anders wrote: > > Shouldn't the default for --with-net-snmp be changed from "ifavailable" > > to "no" now? There's more cleanup required, of course, but that'd be a > > start. > > I think that shou

Re: [Wireshark-dev] Expert Infos are a bit "more official" now!

2007-08-27 Thread Stratemeier, Frank
Yo Chris! I had the same problem and was just wondering why. It seems that "Expert Info" rescans a capture passing no valid tree pointer. "Expert Info Composite" does indeed pass a valid tree pointer!. So in my dissector the EIC makes much more sense. You said that the "old" EI will not be avai

Re: [Wireshark-dev] SNMP/MIBs TO DO

2007-08-27 Thread Kukosa, Tomas
Hello Luis, during your changes the dissector table "snmp.variable_oid" gets lost. Dou you plan to put it back? I have already implemented it two times and did not expect that I would need to implement it third time. Tomas > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EM

Re: [Wireshark-dev] [Wireshark-commits] rev 22661: /trunk/ /trunk/aclocal-fallback/: libsmi.m4 /trunk/epan/: oids.c /trunk/: configure.in

2007-08-27 Thread Joerg Mayer
On Mon, Aug 27, 2007 at 08:47:22AM +0200, Thomas Anders wrote: > Shouldn't the default for --with-net-snmp be changed from "ifavailable" > to "no" now? There's more cleanup required, of course, but that'd be a > start. I think that should only be done once all dissectors of net-snmp have been conv

Re: [Wireshark-dev] [Wireshark-commits] rev 22661: /trunk/ /trunk/aclocal-fallback/: libsmi.m4 /trunk/epan/: oids.c /trunk/: configure.in

2007-08-27 Thread Jaap Keuter
Hi, My build breaks on oids.c cc1: warnings being treated as errors oids.c: In function 'register_mibs': oids.c:464: warning: dereferencing type-punned pointer will break strict-aliasing rules oids.c:476: warning: dereferencing type-punned pointer will break strict-aliasing rules make[1]: *** [

Re: [Wireshark-dev] SNMP/MIBs TO DO

2007-08-27 Thread Joerg Mayer
On Mon, Aug 27, 2007 at 12:21:17AM +0200, Luis EG Ontanon wrote: > Setting the environment variable WIRESHARK_DEBUG_MIBS to 1 or more > should get print-outs for these. Maybe that should be turned into a prefs setting? ciao Joerg PS: I will try to find the time to improve the autoconf foo so