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

2011-04-06 Thread buildbot-no-reply
The Buildbot has detected a new failure of Ubuntu-10.04-x64 on Wireshark (development). Full details are available at: http://buildbot.wireshark.org/trunk/builders/Ubuntu-10.04-x64/builds/1231 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: ubuntu-10.04-x64 Build

Re: [Wireshark-dev] Permanent Bytes/Packets handling enhancement in NetFlowV9/IPFIX

2011-04-06 Thread Motonori Shindo
Guy, I must have installed the subversion using MacPorts a way back and haven't upgraded it since then. This is most likely a problem caused by the old subversion. I will bring up the subversion to the latest one and see how it works. Thanks again! Regards, --- Motonori Shindo 2011/4/6 Guy Harr

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

2011-04-06 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/1450 Buildbot URL: http://buildbot.wireshark.org/trunk/ Buildslave for this Build: windows-7-x64 Build Reason:

[Wireshark-dev] [Patch] gtk/Makefile.common

2011-04-06 Thread Gisle Vanem
I cannot see that 'gtk/text_import_scanner_lex.h' is of any use anymore. Hence we should remote it from gtk/Makefile.common: --- SVN-Latest/gtk/Makefile.common Tue Mar 22 13:41:14 2011 +++ gtk/Makefile.common Wed Apr 06 13:34:58 2011 @@ -24,8 +24,7 @@ # Foundation, Inc., 59 Temple Place - Su

Re: [Wireshark-dev] Q re a possible bug for someone familiar with packet-ansi_637.c

2011-04-06 Thread Chris Maynard
Jaap Keuter writes: > That's the common way to show the application protocol in SIP message bodies. > Most well known is Session Description Protocol in Session Initiation > Protocol > messages: SIP/SDP. But dissect_ansi_637_trans_app() calls col_set_str(), not col_append_str(), and I don't s

Re: [Wireshark-dev] Permanent Bytes/Packets handling enhancement in NetFlowV9/IPFIX

2011-04-06 Thread Motonori Shindo
Guy, et al. Thanks for your advise. I upgraded the subversion to the latest one via MacPorts. $ svn --version svn, version 1.6.16 (r1073529) and it now works fine! I've just filed my patch to Bugzilla. Regards, --- Motonori Shindo 2011/4/6 Guy Harris : > > On Apr 5, 2011, at 11:42 PM, Motono

Re: [Wireshark-dev] Q re a possible bug for someone familiar with packet-ansi_637.c

2011-04-06 Thread Jaap Keuter
On Wed, 6 Apr 2011 14:31:03 + (UTC), Chris Maynard wrote: > Jaap Keuter writes: > >> That's the common way to show the application protocol in SIP message bodies. Most well known is Session Description Protocol in Session Initiation Protocol messages: SIP/SDP. > But dissect_ansi_637_trans_

[Wireshark-dev] RTP Jitter calculation (Telephony->RTP Stream Analysis)

2011-04-06 Thread Chaswi Przellczyk
Dear all, I'm trying to match --- http://wiki.wireshark.org/RTP_statistics --- How jitter is calculated Wireshark calculates jitter according to RFC3550 (RTP): If Si is the RTP timestamp from packet i, and Ri is the time of arrival in RTP timesta

Re: [Wireshark-dev] Bug in ViewVC

2011-04-06 Thread Gerald Combs
The extremely large log message in r34731 was triggering a bug in ViewVC: http://viewvc.tigris.org/issues/show_bug.cgi?id=477 It looks like my attempt at a patch didn't work correctly. It should be fixed now. On 4/5/11 10:51 PM, Jaap Keuter wrote: > Hi Gerald, > > Just to let you know that

[Wireshark-dev] SVN version number in the documentation?

2011-04-06 Thread Guy Harris
On Apr 6, 2011, at 9:34 AM, sfis...@wireshark.org wrote: > http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=36498 > > User: sfisher > Date: 2011/04/06 09:34 AM > > Log: > From Peter via bug #5798: Don't try to run svnversion if it isn't > executable. Presumably that's "not pres

Re: [Wireshark-dev] RTP Jitter calculation (Telephony->RTP Stream Analysis)

2011-04-06 Thread RUOFF, LARS (LARS)** CTR **
Hi, Oh my, it's been a long time since I have written that code and i didn't check the diffs that have been contributed since, but i'll give it a try... (Code uses real time units instead of RTP timestamp units but that doesn't matter for the argument) Saved values from previous packet: statinf

Re: [Wireshark-dev] RTP Jitter calculation (Telephony->RTP Stream Analysis)

2011-04-06 Thread RUOFF, LARS (LARS)** CTR **
Again, with the line break in the right place (i hope) expected_time == R(i-1) + (Si - S(i-1)) current_diff == |Ri - expected_time| == |Ri - (R(i-1) + (Si - S(i-1)))| == |D(i-1,i)| current_jitter == (15 * J(i-1) + |D(i-1,i)|) / 16 == J(i-1) - J(i-1)/16 + |D(i-1,i)|/16 == J(i) -Original

Re: [Wireshark-dev] Better support for writing statistics taps?

2011-04-06 Thread Maynard, Chris
> -Original Message- > From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev- > boun...@wireshark.org] On Behalf Of Guy Harris > TODO: add more infrastructure so that > > 1) statistics tap writers don't have to write as much code > > and > > 2) you can "write once,

Re: [Wireshark-dev] SVN version number in the documentation?

2011-04-06 Thread Andrew Hood
Guy Harris wrote: > I suspect their problem was that they didn't have Subversion installed on the > build machine, so there was no svnversion command available If you are building from a SVN/CVS tree you should be expected to have the tools on the build machine. > The User's Guide says "36497 f

[Wireshark-dev] cmake and tshark, without gtk

2011-04-06 Thread João Henrique Freitas
Hi, I am trying to make a receipe to use on yocto project (www.yoctoproject.org). My target is on tshark, not wireshark (no gui). I am using cmake build. I disabled wireshark gui build with -DBUILD_wireshark option. But the CMakeLists.txt includes the 'gtk' directory. I think this is not right.

[Wireshark-dev] UseLemon.cmake call with lemon fullpath

2011-04-06 Thread João Henrique Freitas
Hi wireshark (1.4.4) uses the script cmake/modules/UseLemon.cmake to call lemon. I think it's need to call lemon tool with full path. Like this: --- cmake/modules/UseLemon.cmake2011-03-01 14:02:20.0 -0300 +++ /home_local/usuario/w/UseLemon.cmake2011-04-06 21:29:02.000

Re: [Wireshark-dev] [Wireshark-commits] rev 36503: /trunk/ /trunk/: tap-icmpstat.c

2011-04-06 Thread Maynard, Chris
Stephen, thanks fixing the bug found by Coverity. I added the assignment of min_msecs after some testing when I realized it was always 0, but obviously stuck it in the wrong place. But you also changed g_malloc0() to g_try_malloc0(); however, that function wasn't available until glib 2.8. Sho

Re: [Wireshark-dev] cmake and tshark, without gtk

2011-04-06 Thread Guy Harris
On Apr 6, 2011, at 5:36 PM, João Henrique Freitas wrote: > I am trying to make a receipe to use on yocto project (www.yoctoproject.org). > > My target is on tshark, not wireshark (no gui). > > I am using cmake build. > > I disabled wireshark gui build with -DBUILD_wireshark option. But the > C

Re: [Wireshark-dev] SVN version number in the documentation?

2011-04-06 Thread Guy Harris
On Apr 6, 2011, at 2:56 PM, Andrew Hood wrote: > Guy Harris wrote: > >> I suspect their problem was that they didn't have Subversion installed on >> the build machine, so there was no svnversion command available > > If you are building from a SVN/CVS tree you should be expected to have > the