[Wireshark-dev] buildbot failure in Wireshark (development) on Ubuntu-9.10-x64

2010-03-07 Thread buildbot-no-reply
The Buildbot has detected a new failure of Ubuntu-9.10-x64 on Wireshark 
(development).
Full details are available at:
 http://buildbot.wireshark.org/trunk/builders/Ubuntu-9.10-x64/builds/264

Buildbot URL: http://buildbot.wireshark.org/trunk/

Buildslave for this Build: ubuntu-9.10-x64

Build Reason: 
Build Source Stamp: 32140
Blamelist: guy

BUILD FAILED: failed fuzz-menagerie

sincerely,
 -The Buildbot

___
Sent via:Wireshark-dev mailing list 
Archives:http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
 mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe


[Wireshark-dev] Writing a tap plugin for AIM Messaging

2010-03-07 Thread Shawn Mayer
I am currently writing a tap interface for the incoming and outgoing 
messages portion of the AIM Messaging dissector. I have followed the 
instructions in the README.tapping file (hopefully correctly). Since the 
goal of this plugin is to link individual messages to conversations and 
then display them I should have tap_queue_packet(aim_messaging_tap, 
pinfo, msg_tree); before the return line of the 
dissect_aim_msg_incoming/outgoing methods correct? I also have to figure 
out a way to send the source and destination IP's (to group messages 
into conversations).

I am a bit confused as to how the tap listener works. Do I have to use 
the reset callback? As I see it the packet callback should update the 
data (say arrays of conversations) and draw should display the data in a 
window as it gets updated. Also where does the listener file get placed? 
Do I have to rebuild the code? Any help or links to further 
documentation/examples would be greatly appreciated. If I'm missing 
something please let me know don't be afraid to e-mail me directly.

Thanks.

NTMail K12 - the Mail Server for Education
___
Sent via:Wireshark-dev mailing list 
Archives:http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
 mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe


Re: [Wireshark-dev] FindGTK2.cmake /trunk/: CMakeLists.txt

2010-03-07 Thread Joerg Mayer
On Sun, Mar 07, 2010 at 10:42:46PM +0100, Stig Bj?rlykke wrote:
> On 7. mars 2010, at 22.36, Joerg Mayer wrote:
> 
> > So which other change do we need to make this work on  OS X?
> 
> It works for me with this patch, but I haven't tested on other platforms yet.

I used a different version of the patch


Index: cmake/modules/FindGTK2.cmake
===
--- cmake/modules/FindGTK2.cmake(revision 32138)
+++ cmake/modules/FindGTK2.cmake(working copy)
@@ -419,9 +419,9 @@
 _GTK2_FIND_INCLUDE_DIR(GTK2_ATK_INCLUDE_DIR atk/atk.h)
 _GTK2_FIND_LIBRARY(GTK2_ATK_LIBRARY atk false true)
 
-#elseif(_GTK2_component STREQUAL "gdk_pixbuf")
-#_GTK2_FIND_INCLUDE_DIR(GTK2_GDKPIXBUF_INCLUDE_DIR 
gdk-pixbuf/gdk-pixbuf.h)
-#_GTK2_FIND_LIBRARY(GTK2_GDKPIXBUF_LIBRARY gdk_pixbuf false true)
+elseif(_GTK2_component STREQUAL "gdk_pixbuf")
+_GTK2_FIND_INCLUDE_DIR(GTK2_GDKPIXBUF_INCLUDE_DIR 
gdk-pixbuf/gdk-pixbuf.h)
+_GTK2_FIND_LIBRARY(GTK2_GDKPIXBUF_LIBRARY gdk_pixbuf false true)
 
 elseif(_GTK2_component STREQUAL "gtkmm")
 
Index: CMakeLists.txt
===
--- CMakeLists.txt  (revision 32139)
+++ CMakeLists.txt  (working copy)
@@ -234,7 +237,7 @@
 #Build the gui ?
 if(BUILD_wireshark)
set(PACKAGELIST GTK2 ${PACKAGELIST})
-   set(GTK2_OPTIONS COMPONENTS gtk)
+   set(GTK2_OPTIONS COMPONENTS gtk gdk_pixbuf)
set(GTK2_DEBUG false)
 endif()
 
and ran into some problems (os 11.2)

Using your version of the patch seems to work (still waiting for the compile to 
finish,
but it's way past the place where it failed last time).

So go ahead and commit.

Ciao
 Joerg
-- 
Joerg Mayer   
We are stuck with technology when what we really want is just stuff that
works. Some say that should read Microsoft instead of technology.
___
Sent via:Wireshark-dev mailing list 
Archives:http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
 mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe


Re: [Wireshark-dev] FindGTK2.cmake /trunk/: CMakeLists.txt

2010-03-07 Thread Stig Bjørlykke
On 7. mars 2010, at 22.36, Joerg Mayer wrote:

> So which other change do we need to make this work on  OS X?

It works for me with this patch, but I haven't tested on other platforms yet.

Index: cmake/modules/FindGTK2.cmake
===
--- cmake/modules/FindGTK2.cmake(revision 32139)
+++ cmake/modules/FindGTK2.cmake(working copy)
@@ -419,9 +419,8 @@
 _GTK2_FIND_INCLUDE_DIR(GTK2_ATK_INCLUDE_DIR atk/atk.h)
 _GTK2_FIND_LIBRARY(GTK2_ATK_LIBRARY atk false true)
 
-#elseif(_GTK2_component STREQUAL "gdk_pixbuf")
-#_GTK2_FIND_INCLUDE_DIR(GTK2_GDKPIXBUF_INCLUDE_DIR 
gdk-pixbuf/gdk-pixbuf.h)
-#_GTK2_FIND_LIBRARY(GTK2_GDKPIXBUF_LIBRARY gdk_pixbuf false true)
+_GTK2_FIND_INCLUDE_DIR(GTK2_GDKPIXBUF_INCLUDE_DIR 
gdk-pixbuf/gdk-pixbuf.h)
+_GTK2_FIND_LIBRARY(GTK2_GDKPIXBUF_LIBRARY gdk_pixbuf false true)
 
 elseif(_GTK2_component STREQUAL "gtkmm")
 

-- 
Stig Bjørlykke


___
Sent via:Wireshark-dev mailing list 
Archives:http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
 mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe


Re: [Wireshark-dev] FindGTK2.cmake /trunk/: CMakeLists.txt

2010-03-07 Thread Joerg Mayer
On Sun, Mar 07, 2010 at 08:54:10PM +0100, Stig Bj?rlykke wrote:
> > Is this something we should push upstream?
> 
> I suppose we should.
> 
> I also have to enable the check for GDKPIXBUF to make it link.  Is this only 
> needed on OS X?

Well, it worked on opensuse 11.2 without any extra changes ;-)
So which other change do we need to make this work on  OS X?

ciao
   Joerg

-- 
Joerg Mayer   
We are stuck with technology when what we really want is just stuff that
works. Some say that should read Microsoft instead of technology.
___
Sent via:Wireshark-dev mailing list 
Archives:http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
 mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe


[Wireshark-dev] buildbot failure in Wireshark (development) on Solaris-10-SPARC

2010-03-07 Thread buildbot-no-reply
The Buildbot has detected a new failure of Solaris-10-SPARC on Wireshark 
(development).
Full details are available at:
 http://buildbot.wireshark.org/trunk/builders/Solaris-10-SPARC/builds/1113

Buildbot URL: http://buildbot.wireshark.org/trunk/

Buildslave for this Build: solaris-10-sparc

Build Reason: 
Build Source Stamp: 32138
Blamelist: dimeg,etxrab,gerald,jake,martinm,stig

BUILD FAILED: failed test.sh

sincerely,
 -The Buildbot

___
Sent via:Wireshark-dev mailing list 
Archives:http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
 mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe


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

2010-03-07 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/1095

Buildbot URL: http://buildbot.wireshark.org/trunk/

Buildslave for this Build: windows-xp-x86

Build Reason: 
Build Source Stamp: 32139
Blamelist: dimeg,etxrab,gerald,jake,jmayer,martinm,stig

BUILD FAILED: failed nmake all

sincerely,
 -The Buildbot

___
Sent via:Wireshark-dev mailing list 
Archives:http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
 mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe


[Wireshark-dev] buildbot failure in Wireshark (development) on Windows-7-x64

2010-03-07 Thread buildbot-no-reply
The Buildbot has detected a new failure of Windows-7-x64 on Wireshark 
(development).
Full details are available at:
 http://buildbot.wireshark.org/trunk/builders/Windows-7-x64/builds/458

Buildbot URL: http://buildbot.wireshark.org/trunk/

Buildslave for this Build: windows-7-x64

Build Reason: 
Build Source Stamp: 32139
Blamelist: dimeg,etxrab,gerald,jake,jmayer,martinm,stig

BUILD FAILED: failed nmake setup

sincerely,
 -The Buildbot

___
Sent via:Wireshark-dev mailing list 
Archives:http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
 mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe


Re: [Wireshark-dev] FindGTK2.cmake /trunk/: CMakeLists.txt

2010-03-07 Thread Stig Bjørlykke
On 7. mars 2010, at 20.42, Kovarththanan Rajaratnam wrote:

> Is this something we should push upstream?

I suppose we should.

I also have to enable the check for GDKPIXBUF to make it link.  Is this only 
needed on OS X?


-- 
Stig Bjørlykke


___
Sent via:Wireshark-dev mailing list 
Archives:http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
 mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe


Re: [Wireshark-dev] FindGTK2.cmake /trunk/: CMakeLists.txt

2010-03-07 Thread Kovarththanan Rajaratnam
Hey,

On 06-03-2010 21:02, Stig Bjørlykke wrote:
> On 6. mars 2010, at 18.28, Joerg Mayer wrote:
>
>> Can you please try to find out a few more details as to what goes
>> wrong?
>
> Missing search in /opt/local for includes and libs.
> Fixed in revision 32129.

Is this something we should push upstream?

-- 
Best regards,
Kovarththanan Rajaratnam

___
Sent via:Wireshark-dev mailing list 
Archives:http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
 mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe


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

2010-03-07 Thread buildbot-no-reply
The Buildbot has detected a new failure of OSX-10.5-PowerPC on Wireshark 
(development).
Full details are available at:
 http://buildbot.wireshark.org/trunk/builders/OSX-10.5-PowerPC/builds/1265

Buildbot URL: http://buildbot.wireshark.org/trunk/

Buildslave for this Build: osx-10.5-ppc

Build Reason: 
Build Source Stamp: 32135
Blamelist: etxrab,gerald

BUILD FAILED: failed compile

sincerely,
 -The Buildbot

___
Sent via:Wireshark-dev mailing list 
Archives:http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
 mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe


Re: [Wireshark-dev] r32134 - "...I hope strtok_s is portable" - no, it isn't

2010-03-07 Thread Anders Broman
Hopefully fixed in revision 32138.

/Anders

 

  _  

Från: wireshark-dev-boun...@wireshark.org
[mailto:wireshark-dev-boun...@wireshark.org] För Kaul
Skickat: den 7 mars 2010 18:12
Till: Developer support list for Wireshark
Ämne: [Wireshark-dev] r32134 - "...I hope strtok_s is portable" - no,it
isn't

 

Broke my Linux (Fedora 12, x64) build.
Y.

___
Sent via:Wireshark-dev mailing list 
Archives:http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
 mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe

[Wireshark-dev] r32134 - "...I hope strtok_s is portable" - no, it isn't

2010-03-07 Thread Kaul
Broke my Linux (Fedora 12, x64) build.
Y.
___
Sent via:Wireshark-dev mailing list 
Archives:http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
 mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe

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

2010-03-07 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/1595

Buildbot URL: http://buildbot.wireshark.org/trunk/

Buildslave for this Build: osx-10.5-x86

Build Reason: 
Build Source Stamp: 32135
Blamelist: etxrab,gerald

BUILD FAILED: failed compile

sincerely,
 -The Buildbot

___
Sent via:Wireshark-dev mailing list 
Archives:http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
 mailto:wireshark-dev-requ...@wireshark.org?subject=unsubscribe