Re: [Wireshark-dev] MSVC 2015 (VC14) notes/issue

2015-08-12 Thread Anders Broman
Graham Bloice skrev den 2015-08-12 19:18: On 12 August 2015 at 17:57, Pascal Quantin > wrote: Hi, Le 12 août 2015 6:21 PM, "Bill Meier" mailto:wme...@newsguy.com>> a écrit : > > [Resend] > > I see that several people (Anders, ...) been bu

Re: [Wireshark-dev] Windows file wildcard support

2015-08-20 Thread Anders Broman
Hi, I don't build with CMAKE currently so I can't test but it might still be a problem with setargv We get this warning on the buildboot: > LINK : warning LNK4044: unrecognized option '/RELEASE;setargv.obj'; ignored > [C:\buildbot\wireshark\wireshark-master-32\windows-8.1-x86\build\cmbuild\epan\e

Re: [Wireshark-dev] Bug in Wireshark Display filter engine caused by optimization of proto tree during dissect

2015-08-21 Thread Anders Broman
Den 21 aug 2015 16:37 skrev "Richard Sharpe" : > > On Fri, Aug 21, 2015 at 7:34 AM, Jeff Morriss wrote: > > On 08/21/15 10:09, Richard Sharpe wrote: > >> > >> Hi folks, > >> > >> Below are my findings on the problem I mentioned earlier under the > >> title of Is this a bug in the display filter en

Re: [Wireshark-dev] Bug in Wireshark Display filter engine caused by optimization of proto tree during dissect

2015-08-21 Thread Anders Broman
while commuting :-) > > On Fri, Aug 21, 2015 at 10:44 AM, Anders Broman wrote: > > > > Den 21 aug 2015 16:37 skrev "Richard Sharpe" < realrichardsha...@gmail.com>: > >> > >> On Fri, Aug 21, 2015 at 7:34 AM, Jeff Morriss < jeff.morriss...@

Re: [Wireshark-dev] Can I compile only the plugins on Windows?

2015-08-30 Thread Anders Broman
Den 30 aug 2015 10:15 skrev "Adir Shemesh" : > > I already have Wireshark compiled, but I'm developing a plugin and compiling everything takes a lot of time. > In Linux I can use "make -C plugins" but I couldn't find a solution for windows. > Run the nmake command in the plugins directory, you may

Re: [Wireshark-dev] MSVC 2015 (VC14) notes/issue

2015-08-31 Thread Anders Broman
From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Alexis La Goutte Sent: den 31 augusti 2015 09:43 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] MSVC 2015 (VC14) notes/issue On Sun, Aug 30, 2015 at 11:25 PM, Bill Meier

Re: [Wireshark-dev] MSVC 2015 (VC14) notes/issue

2015-08-31 Thread Anders Broman
Den 31 aug 2015 10:24 skrev "Pascal Quantin" : > > > Le 31 août 2015 10:09 AM, "Anders Broman" a écrit : > > > > > > > > > > > > From: wireshark-dev-boun...@wireshark.org [mailto: wireshark-dev-boun...@wireshark.org] On Beha

Re: [Wireshark-dev] Integrating the HAPViewer code.

2015-09-02 Thread Anders Broman
PLv2 or later". As I understand things, shipping packages linked with an LGPLv3 library would mean that we would be distributing Wireshark under the GPLv3. I'm not opposed to downstream projects doing this, and I'm not opposed to switching licenses. It *is* something that should be d

Re: [Wireshark-dev] Greetings and Where to Start

2015-09-09 Thread Anders Broman
Hi, If the object is > in optimizing code using data structures In what way to make it run faster? Wiresharks innards are quite complicated and may take a while to get the hang of but if it would be possible To optimize in terms of memory usage or execution speed it would be very beneficial for t

Re: [Wireshark-dev] Index of multiple protocol frames in one packet?

2015-10-05 Thread Anders Broman
Den 6 okt 2015 08:07 skrev "Petr Gotthard" : > > Hello, > > Is there a way to distinguish multiple frames of the same protocol in one TCP/IP packet? I have several small AMQP frames which all fit into a single IP frame, so they share a single packet_info structure.When I call p_add_proto_data() for

Re: [Wireshark-dev] Index of multiple protocol frames in one packet?

2015-10-12 Thread Anders Broman
From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Pascal Quantin Sent: den 12 oktober 2015 17:43 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Index of multiple protocol frames in one packet? 2015-10-12 17:35 GMT+02:00

Re: [Wireshark-dev] Supported GnuTLS/glib/libgcrypt versions?

2015-10-15 Thread Anders Broman
Den 15 okt 2015 19:43 skrev "Jeff Morriss" : > > On 10/14/15 14:25, Peter Wu wrote: >> >> On Mon, Oct 12, 2015 at 02:02:18PM -0400, Jeff Morriss wrote: >>> >>> But you do raise a good point: I should start doing test compiles of the 2.0 >>> rc on RHEL 6. I hadn't realized my users would have to co

Re: [Wireshark-dev] GTP sequence number equal to zero problem

2015-11-04 Thread Anders Broman
Hi, You are supposed to try to fix the compilation errors even if you can’t verify the fix yourself. If you follow the link to the failing build bot and then click on stdio o

[Wireshark-dev] The GTK version of the internals menu dissector tables crashes.

2015-11-06 Thread Anders Broman
(lt-wireshark-gtk:3404): Gtk-CRITICAL **: gtk_tree_view_get_model: assertion 'GTK_IS_TREE_VIEW (tree_view)' failed ** ERROR:dissector_tables_dlg.c:159:decode_proto_add_to_list: code should not be reached ___ Sent via:Wire

Re: [Wireshark-dev] The GTK version of the internals menu dissector tables crashes.

2015-11-06 Thread Anders Broman
Hi, The switch needs FT_GUID ... should that be handled as FT_BYTES or FT_STRING, new tab for GUI tables? From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Anders Broman Sent: den 6 november 2015 14:39 To: wireshark-dev@wireshark.org Subject

Re: [Wireshark-dev] Dissect using val_to_str from external file

2015-11-11 Thread Anders Broman
Hi, If I remember correctly there is a problem to use data between .dlls on Windows. You can copy the value string to your plugin I suppose. Regards Anders -Original Message- From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Jo Sent: den

Re: [Wireshark-dev] When is the preference variable updated?

2015-11-12 Thread Anders Broman
Hi, If you look in epan/prefs.h you can see that the second argument is a callback function prefs_register_protocol(int id, void (*apply_cb)(void)); In packet-sip.c sip_module = prefs_register_protocol(proto_sip, proto_reg_handoff_sip); So proto_reg_handoff_sip is called every time the preferenc

Re: [Wireshark-dev] Buildbots

2015-11-20 Thread Anders Broman
From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Dario Lombardo Sent: den 20 november 2015 10:52 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Buildbots On Thu, Nov 19, 2015 at 5:59 PM, Graham Bloice mailto:graham.blo.

Re: [Wireshark-dev] Setting up git for gerrit

2015-11-30 Thread Anders Broman
Hi, Have you tried GIT GUI that worked better for me…You need your HTTP password from “settings” on gerrit. Regards Anders From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Paul Offord Sent: den 30 november 2015 10:04 To: Developer support list f

Re: [Wireshark-dev] Wireshark Performance

2015-12-02 Thread Anders Broman
Hi, Running valgrind on my standard pcap we have gone from ==36946== Callgrind, a call-graph generating cache profiler ==36946== Copyright (C) 2002-2013, and GNU GPL'd, by Josef Weidendorfer et al. ==36946== Using Valgrind-3.10.0.SVN and LibVEX; rerun with -h for copyright info ==36946== Command: /

Re: [Wireshark-dev] Wireshark Performance

2015-12-02 Thread Anders Broman
From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Anders Broman Sent: den 2 december 2015 15:41 To: Developer support list for Wireshark; alexis.lagou...@gmail.com Subject: Re: [Wireshark-dev] Wireshark Performance Hi, Running valgrind on my

Re: [Wireshark-dev] Wireshark Performance

2015-12-02 Thread Anders Broman
can't imagine that would have a huge effect on performance? On Wed, Dec 2, 2015 at 9:45 AM, Anders Broman mailto:anders.bro...@ericsson.com>> wrote: From: wireshark-dev-boun...@wireshark.org<mailto:wireshark-dev-boun...@wireshark.org> [mailto:wireshark-dev-boun

Re: [Wireshark-dev] Wireshark Performance

2015-12-02 Thread Anders Broman
Unselect stun_udp. From: wireshark-dev-boun...@wireshark.org<mailto:wireshark-dev-boun...@wireshark.org> [mailto:wireshark-dev-boun...@wireshark.org<mailto:wireshark-dev-boun...@wireshark.org>] On Behalf Of Anders Broman Sent: Wednesday 2 December 2015 16:08 To: Developer support list

Re: [Wireshark-dev] UI Proposal for better Analysis for Android devices

2015-12-30 Thread Anders Broman
From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of VIKRAM VENKATESH HEGDE Sent: den 29 december 2015 06:57 To: wireshark-dev@wireshark.org Subject: [Wireshark-dev] UI Proposal for better Analysis for Android devices Dear All, Its my pleasure

Re: [Wireshark-dev] UI Proposal for better Analysis for Android devices

2015-12-30 Thread Anders Broman
latforms, especially OSX. I think any new UI development should be for Qt first, then if developer cycles are available, it can be ported to GTK. As I understand it in this case the GTK code exist and the Qt does not. Not accepting it would slow progress and accepting it might speed up the port to Q

Re: [Wireshark-dev] UI Proposal for better Analysis for Android devices

2015-12-31 Thread Anders Broman
Den 31 dec 2015 14:30 skrev "Graham Bloice" : > > > > On 31 December 2015 at 11:35, Bálint Réczey wrote: >> >> 2015-12-31 0:10 GMT+01:00 Anders Broman : >> > >> > Den 30 dec 2015 17:01 skrev "Graham Bloice" < graham.blo...@tri

Re: [Wireshark-dev] build with vs2015

2015-12-31 Thread Anders Broman
Den 31 dec 2015 16:06 skrev "Alan Partis" : > > I see there were a couple discussions back in August about building > wireshark using Visual Studio 2015. At that time, one of the issues that > was raised had to do with the availability of required libs from Qt (which > still appears to only have s

Re: [Wireshark-dev] How Wireshark supports monitor mode for WLAN 802.11 adapter in Windows?

2016-01-04 Thread Anders Broman
-Original Message- From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Guy Harris Sent: den 1 januari 2016 21:00 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] How Wireshark supports monitor mode for WLAN 802.11 adap

Re: [Wireshark-dev] [Wireshark-bugs] [Bug 11980] The filtering speed is impacted by commit b344107d757466e0768a3ef8927852479e926cf6 (Make color filters part of dissection)

2016-01-10 Thread Anders Broman
Den 10 jan 2016 14:50 skrev : > > Comment # 6 on bug 11980 from Peter Wu > > You are right, coloring always need to happen (whenever color rules exist). > (What about tshark? Colors are normally not shown, but if the two > frame.coloring_rule fields are shown in the frame tree/columns, should the >

[Wireshark-dev] Reassembly of IP fragments gets confused by multiple packets on different VLANS

2016-01-20 Thread Anders Broman
Hi, I just came across a problem where reassembly of IP fragments failed/messed up, see https://code.wireshark.org/review/#/c/13452/ The problem was fixed by changing line 2409 in packet-ip.c to iph->ip_p ^ iph->ip_id ^ src32 ^ dst32 ^ pinfo->vlan_id, e.g throw

Re: [Wireshark-dev] Reassembly of IP fragments gets confused by multiple packets on different VLANS

2016-01-20 Thread Anders Broman
20 januari 2016 16:29 To: wireshark-dev@wireshark.org Subject: Re: [Wireshark-dev] Reassembly of IP fragments gets confused by multiple packets on different VLANS See bug 4561 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4561) -Original Message- From: Anders Broman mailto:anders

Re: [Wireshark-dev] Wireshark fails to start with wpcap.dll built by Visual Studio 2010

2016-02-03 Thread Anders Broman
Hi, Why not build with VS 2013? It seems to be supported in master now. I presume we would like updates pushed there. Regards Anders From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Pascal Quantin Sent: den 3 februari 2016 17:27 To: Developer su

Re: [Wireshark-dev] Reassembly of IP fragments gets confused by multiple packets on different VLANS

2016-02-08 Thread Anders Broman
packets on different VLANS On Jan 20, 2016, at 8:43 AM, Anders Broman wrote: > Trying to summarize… > > captured on the "all" interface of a Linux machine acting as a router, or > merged two captures from networks on different sides of a router. > > various sorts

Re: [Wireshark-dev] Reassembly of IP fragments gets confused by multiple packets on different VLANS

2016-02-08 Thread Anders Broman
Den 8 feb 2016 18:04 skrev "Guy Harris" : > > On Feb 8, 2016, at 8:51 AM, Anders Broman wrote: > > > It seems like there might not be a "solve all" solution to the cases listed, it also seems to me like there is a need for several flavors of "conversatio

Re: [Wireshark-dev] Reassembly of IP fragments gets confused by multiple packets on different VLANS

2016-02-08 Thread Anders Broman
Den 8 feb 2016 18:28 skrev "Guy Harris" : > > On Feb 8, 2016, at 9:23 AM, Anders Broman wrote: > > > Yes, when conversation is set up from say the SDP dissector for the upcoming rtp flow we will not know on which wire it will appear. > > So perhaps the reassembly co

[Wireshark-dev] GTK GUI: filter shortcuts multiplied when changing profiles.

2016-02-12 Thread Anders Broman
Hi, A user of our internal Wireshark version reported to me that if you have profiles with filter shortcuts switching between profiles Will add all the filter shortcuts to the menu bar adding the new shortcuts to the end leaving you with a long list of filters that may not fit the window. I don't

Re: [Wireshark-dev] Testing the new created .dll

2016-02-16 Thread Anders Broman
Hi, So you compiled with 2.1.0(Master I presume) and tried it with 2.0.1 the current released version, that is not guaranteed to work as We do not guarantee API and ABI compatibility between versions. Try to build with 2.0.1 and then copy the .dll Best regards Anders From: wireshark-dev-boun...@

[Wireshark-dev] androiddump no longer built with nmake -> packaging fails

2016-02-17 Thread Anders Broman
Hi, The files in the extcap folder are no longer built with nmake... Regards Anders ___ Sent via:Wireshark-dev mailing list Archives:https://www.wireshark.org/lists/wireshark-dev Unsubscribe: https://wireshark.org/mail

Re: [Wireshark-dev] androiddump no longer built with nmake -> packaging fails

2016-02-18 Thread Anders Broman
-> packaging fails Hi Anders, 2016-02-17 16:32 GMT+01:00 Anders Broman mailto:anders.bro...@ericsson.com>>: Hi, The files in the extcap folder are no longer built with nmake... Should be fixed with https://code.wireshark.org/review/#/c/13986/1 Cheer

[Wireshark-dev] Build failing on SLES 11.2

2016-02-22 Thread Anders Broman
Hi, A collegue is trying to build on SLES 11.2 but the build is failing with eth@linux-q645:~/plugin_dev/ > make /usr/bin/perl ./make-version.pl . Version configuration file version.conf not found. Using defaults. version.h has been updat

Re: [Wireshark-dev] [Wireshark-commits] master e282c19: autotools: Fix multiple repetitions of -L build flags

2016-02-23 Thread Anders Broman
From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Jeff Morriss Sent: den 23 februari 2016 15:07 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] [Wireshark-commits] master e282c19: autotools: Fix multiple repetitions of -L b

[Wireshark-dev] Problems with NSIS packaging and Copyright symbol?

2016-03-15 Thread Anders Broman
Hi, A collegue of mine get Processing config: C:\Program Files (x86)\NSIS\nsisconf.nsh Processing script file: "uninstall.nsi" (ACP) Bad text encoding: common.nsh:34 !include: error in script: "common.nsh" on line 34 Error in script "uninstall.nsi" on line 8 -- aborting creation process NMAKE : fat

[Wireshark-dev] Build error with Visual studio 2015 and nmake

2016-03-30 Thread Anders Broman
Hi, I just tried to compile with Visual studio 2015 and Qt 5.6 and got the following error: wireshark_dialog.cpp .\wireshark_application.cpp(547): error C2664: 'void *ws_load_library(gchar *)': cannot convert argument 1 from 'const char [13]' to 'gchar *' .\wireshark_application.cpp(547): note: C

[Wireshark-dev] Warn Dissector bug, protocol RADIUS

2016-03-30 Thread Anders Broman
Hi, After the recent radius changes I get these console printouts for radius packets C:\Development\wireshark>17:30:27 Warn Dissector bug, protocol RADIUS, in packet 65: proto.c:2494: failed assertion "(guint)hfindex < gpa_hfinfo.len" ( Unregistered hf!) Regards Anders __

Re: [Wireshark-dev] Current master not compiling

2016-04-04 Thread Anders Broman
Hi, I'm also facing issues on MSVC 2015 and Cmake C:\Development\ewireshark\trunk\epan\dfilter\dfilter.c(214): error C2065: 'yyscan_t': undeclared identifier [C:\Development\wsbuild64\epan\dfilter\dfilter.vcxproj] C:\Development\ewireshark\trunk\epan\dfilter\dfilter.c(214): err

Re: [Wireshark-dev] Current master not compiling

2016-04-04 Thread Anders Broman
: [Wireshark-dev] Current master not compiling On 4 April 2016 at 12:05, Anders Broman mailto:anders.bro...@ericsson.com>> wrote: Hi, I'm also facing issues on MSVC 2015 and Cmake C:\Development\ewireshark\trunk\epan\dfilter\dfilter.c(214): error C2065: 'yyscan_t':

Re: [Wireshark-dev] Fake MAC addresses in text2pcap and "Import from hex dump"

2016-04-12 Thread Anders Broman
-Original Message- From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Guy Harris Sent: den 12 april 2016 02:04 To: Developer support list for Wireshark Subject: [Wireshark-dev] Fake MAC addresses in text2pcap and "Import from hex dump" W

[Wireshark-dev] Build failing on SUSE 11.3

2016-04-19 Thread Anders Broman
Hi, The build fails for me on SUSE 11.3 /usr/lib64/gcc/x86_64-suse-linux/4.3/../../../../x86_64-suse-linux/bin/ld: skipping incompatible /usr/lib/libc.a when searching for -lc ui/gtk/libgtkui.a(gui_utils.o): In function `window_icon_realize_cb': /home/ericsson/ewireshark/trunk/ui/gtk/gui_utils.c:

[Wireshark-dev] rpm-build on SuSE 11.3 fails with "new version string"

2016-04-22 Thread Anders Broman
tardir=wireshark-2.1.0-git && tar --format=ustar -chf - "$tardir" | bzip2 -9 -c >wireshark-2.1.0-git.tar.bz2 { test ! -d wireshark-2.1.0-git || { find wireshark-2.1.0-git -type d ! -perm -200 -exec chmod u+w {} ';' && rm -fr wireshark-2.1.0-git; }; } error: line 28: Illegal char '-' in version: V

Re: [Wireshark-dev] rpm-build on SuSE 11.3 fails with "new version string"

2016-04-22 Thread Anders Broman
build even though I've installed a newer autoconf from source. On 22-04-2016 09:33, Anders Broman wrote: > tardir=wireshark-2.1.0-git && tar --format=ustar -chf - "$tardir" | > bzip2 -9 -c >wireshark-2.1.0-git.tar.bz2 > > { test ! -d wireshark-2.1.0-git || { fi

[Wireshark-dev] How to download required libraries when using Cmake?

2016-04-25 Thread Anders Broman
Hi, How are you to download the required support libraries with cmake? With nmake you get a warning if they are out of date and you can run the setup target to have them updated. If I'm not missing something this does not work with Cmake? Regards Anders __

[Wireshark-dev] namake build fails fatal error U1073: don't know how to make 'ws_version_info.obj'

2016-04-28 Thread Anders Broman
cd .. cd wsutil "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\BIN\amd64\nmake. exe" / -f Makefile.nmake Microsoft (R) Program Maintenance Utility Version 12.00.21005.1 Copyright (C) Microsoft Corporation. All rights reserved. NMAKE : fatal er

[Wireshark-dev] How to trigger a rebuild of ASN1 dissectors with cmake?

2016-05-03 Thread Anders Broman
Hi, I just did some edits in packet-h248-template.c and rerun cmake but the dissector did not rebuild... Regards Anders ___ Sent via:Wireshark-dev mailing list Archives:https://www.wireshark.org/lists/wireshark-dev Un

Re: [Wireshark-dev] How to trigger a rebuild of ASN1 dissectors with cmake?

2016-05-03 Thread Anders Broman
Den 3 maj 2016 16:58 skrev "Pascal Quantin" : > > Hi Anders, > > 2016-05-03 16:47 GMT+02:00 Anders Broman : >> >> Hi, >> >> I just did some edits in packet-h248-template.c and rerun cmake but the dissector did not rebuild... > > > On Windows

[Wireshark-dev] Exported PDU timestamp problem

2016-05-04 Thread Anders Broman
Hi In the created exported PDU file there seems to be a problem with the timestamps. I'm not sure if it's related to the recent changes to the pcap-ng block handling or something else. Exported PDU uses ns resolution when writing. If someone cares to take a look I'd be grateful. I will not have the

[Wireshark-dev] Build fails on SuSE 11.3, print_stream.c:151: error: implicit declaration of function 'g_get_codeset'

2016-05-13 Thread Anders Broman
Hi, I got a report that the build fails on SuSE 11.3. Is someone else seeing this? I don't have the time to look into it just right now. cc1: warnings being treated as errors print_stream.c: In function 'print_line_text': print_stream.c:151: error: implicit declaration of function 'g_get_codeset'

Re: [Wireshark-dev] Build fails on SuSE 11.3, print_stream.c:151: error: implicit declaration of function 'g_get_codeset'

2016-05-13 Thread Anders Broman
: implicit declaration of function 'g_get_codeset' On May 13, 2016, at 1:56 AM, Anders Broman wrote: >> I got a report that the build fails on SuSE 11.3. Is someone else seeing >> this? I don’t have the time to look into it just right now. >> >> cc1: warnings being t

[Wireshark-dev] Configure/autogen failing on Ubuntu 14.04

2016-05-18 Thread Anders Broman
Hi, I get Makefile.am:415: error: HAVE_SPEEXDSP does not appear in AM_CONDITIONAL codecs/Makefile.am:38: error: HAVE_SPEEXDSP does not appear in AM_CONDITIONAL ui/qt/Makefile.am:27: error: HAVE_SPEEXDSP does not appear in AM_CONDITIONAL Anyone else seeing this? Regards Anders

Re: [Wireshark-dev] Configure/autogen failing on Ubuntu 14.04

2016-05-18 Thread Anders Broman
:38 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Configure/autogen failing on Ubuntu 14.04 On Wed, May 18, 2016 at 10:07 AM, Anders Broman mailto:anders.bro...@ericsson.com>> wrote: Hi, I get Makefile.am:415: error: HAVE_SPEEXDSP does not appear in AM_CONDITIONAL

[Wireshark-dev] proto_tree_add_item_ret_uint() returns unmasked value - should it?

2016-07-18 Thread Anders Broman
Hi, proto_tree_add_item_ret_uint() returns the value corresponding to the length of the value fetched e.g uint8, uint16 etc but does not take the mask of the hf entry into consideration which lead to a bug in an proprietary dissector I have. Should it in fact return the value displayed in the cor

Re: [Wireshark-dev] proto_tree_add_item_ret_uint() returns unmasked value - should it?

2016-07-18 Thread Anders Broman
ave been many cases where I couldn't use proto_tree_add_item_ret_uint where I wanted to because masks were involved. -Original Message- From: Anders Broman mailto:anders.bro...@ericsson.com>> To: wireshark-dev mailto:wireshark-dev@wireshark.org>> Se

[Wireshark-dev] extcap.c does not build on SUSE 11.3. g_spawn_check_exit_status requires glib 2.34

2016-08-01 Thread Anders Broman
Hi, I get extcap.c:842: undefined reference to `g_spawn_check_exit_status' on SUSe 11.3 with top of trunk. Perhaps we should not build extcap on such an old system? Regards Anders ___ Sent via:Wireshark-dev mailing list

[Wireshark-dev] make dist fails if built without Qt

2016-08-01 Thread Anders Broman
make[1]: Leaving directory wireshark/trunk/ui/gtk' (cd ui/qt && make top_distdir=../../wireshark-2.3.0 distdir=../../wireshark-2.3.0/ui/qt \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[1]: Entering directory `/home/ericsson/ewireshark/trunk/ui/qt' LRELEAS

Re: [Wireshark-dev] Adding Qt5 libs via VS Additional Dependencies

2016-08-05 Thread Anders Broman
Hi, As Graham I’m suspicious about GUI code in plugins. Code “enhancing” the GUI should probably be placed in the respective GUI folder(Qt or GTK) and hook into the menus. I suppose that currently require you to build a custom Wireshark version. Can’t your GUI code be made part of the standard v

Re: [Wireshark-dev] Registering protocol details

2016-08-07 Thread Anders Broman
Den 7 aug. 2016 11:25 fm skrev "Paul Offord" : > > Hi, > > > > I’ve written a small program that converts web logs into pcap-ng files with a dummy Ethernet header You could use the exported pdu format See exported_pdu.h in epan directory. Should you need new tags for meta information those could b

Re: [Wireshark-dev] Registering protocol details

2016-08-07 Thread Anders Broman
ireshark.org [mailto: wireshark-dev-boun...@wireshark.org] On Behalf Of Anders Broman > Sent: 07 August 2016 11:02 > To: Developer support list for Wireshark > Subject: Re: [Wireshark-dev] Registering protocol details > > > > Den 7 aug. 2016 11:25 fm skrev "Paul Offord

Re: [Wireshark-dev] Cmake and RPM

2016-08-16 Thread Anders Broman
Hi, Did configure find rpmbuild? Regards Anders From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Jonne Zutt Sent: den 16 augusti 2016 11:23 To: wireshark-dev@wireshark.org Subject: [Wireshark-dev] Cmake and RPM Hi all, Could somebody tell me wh

Re: [Wireshark-dev] Exported PUD proto_name

2016-08-29 Thread Anders Broman
From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Dario Lombardo Sent: den 29 augusti 2016 17:03 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Exported PUD proto_name I tried again with udpdump using - http (4 bytes long)

Re: [Wireshark-dev] Makefiles for private dissectors

2016-08-30 Thread Anders Broman
Hi, You need to edit Custom.m4 and Custom.make in the plugins folder. Fror packaging on windows you also have to look for custom files in /packaging/nsis Regards Anders From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Not Me Sent: den 30 augusti

[Wireshark-dev] ./configure failing on Ubuntu 14.04

2016-08-31 Thread Anders Broman
Hi, I'm getting checking for Qt5Core - version >= 5.0.0... yes (version 5.2.1) checking for Qt5Gui - version >= 5.0.0... yes (version 5.2.1) checking for Qt5Widgets - version >= 5.0.0... yes (version 5.2.1) checking for Qt5PrintSupport - version >= 5.0.0... yes (version 5.2.1) checking for Qt5Multi

Re: [Wireshark-dev] ./configure failing on Ubuntu 14.04

2016-08-31 Thread Anders Broman
1] [1]https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=12570 On 08/31/2016 02:05 PM, Anders Broman wrote: > Hi, > > I'm getting > > checking for Qt5Core - version >= 5.0.0... yes (version 5.2.1) > > checking for Qt5Gui - version >= 5.0.0... yes (version 5.2.1)

[Wireshark-dev] PCAP NG files not closed properly any more?

2016-09-05 Thread Anders Broman
Hi, Looking at a pcap-ng file just produced with the File viewer [MIME file format] I get [Packet size limited during capture: File-PCAPNG truncated] I'm looking at a problem where it seems we have no NRB block in the file any more. I have the option "Only use the profile "hosts" file set. Rega

Re: [Wireshark-dev] Remove of GTK interface

2016-09-05 Thread Anders Broman
Hi, I have reports from internal users that the Qt interface does not work when connecting remotely by VNC or ssh -X to the sniffer so for me that’s a showstopper to get rid of GTK. Regards Anders From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf

[Wireshark-dev] Elapsed Time for Wireshark startup

2016-09-29 Thread Anders Broman
Hi, I did a check to see where the time is spent when starting up Wireshark and here's the findings: ( Win 7 and GTK ) Enter main: Elapsed time 0us load_wpcap: Elapsed time 0us Get version strings: Elapsed time 1

Re: [Wireshark-dev] VoIP Calls dialog enhancements

2016-10-21 Thread Anders Broman
Patches are very welcome, the void call stuff might need some love :-) Regards Anders Den 20 okt. 2016 8:04 em skrev "Erik de Jong" : > After a very exciting Sharkfest Europe I've decided to participate a bit > in the development of Wireshark! > > Some enhancements for the VoIP calls dialog would

Re: [Wireshark-dev] Segfault when running older Wireshark with capture from CVE-2013-4075

2016-11-11 Thread Anders Broman
>-Original Message- >From: wireshark-dev-boun...@wireshark.org >[mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Martin Sehnoutka >Sent: den 11 november 2016 10:34 >To: Developer support list for Wireshark >Subject: [Wireshark-dev] Segfault when running older Wireshark with cap

[Wireshark-dev] RPM Build fails on SUSE 11.3

2016-12-19 Thread Anders Broman
Hi, Even though configured with: /configure --with-lua -enable-setuid-install --without-qt --with-gtk=2 -without-libnl --enable-warnings-as-errors=no --with-extcap=no Rpm-build fails with: extcap_gtk.c: In function 'extcap_gtk_get_state': extcap_gtk.c:193: error: 'GTimeZone' undeclared (first u

Re: [Wireshark-dev] QT DLLs missing from build environment

2016-12-27 Thread Anders Broman
Hi, At some point I think there was a fault in Qt causing it to not copy all .dll when running the command to do so. I'm currently building with Qt 5.6 which I believe is supposed To be LTS. Regards Anders From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On

Re: [Wireshark-dev] QT DLLs missing from build environment

2016-12-27 Thread Anders Broman
h releases I've used before. I notice that the Qt site is offering 5.7 - is that a supported release? Thanks...Paul Sent from Samsung Mobile on O2 Original message ---- From: Anders Broman Date:27/12/2016 14:04 (GMT+00:00) To: Developer support list for Wireshark Subject: Re:

[Wireshark-dev] make-version.pl "problems"

2017-01-02 Thread Anders Broman
Hi, I recently ported the updated make-version.pl to my local SVN based Wireshark clone and have some problems on Windows: With these settings my $set_version = 1; my $set_release = 1; Cmake failed complaining on path I changed line 546 from: for $filedir ("epan", "wiretap") { # "wsutil" to: for

Re: [Wireshark-dev] make-version.pl "problems"

2017-01-03 Thread Anders Broman
eshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Gerald Combs Sent: den 2 januari 2017 18:32 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] make-version.pl "problems" Change 19508 should fix both of these issues. On 1/2/17 6:20 AM, Anders Broman wrote: &

[Wireshark-dev] extcap slowing down start of WS

2017-01-03 Thread Anders Broman
Hi, It now seems like extcap_register_preferences is the thing taking the longest time when starting up Wireshark, at least on Window. Any one care to take a look? Regards Anders ___ Sent via:Wireshark-dev mailing list A

Re: [Wireshark-dev] extcap slowing down start of WS

2017-01-04 Thread Anders Broman
erences call is a necessity, but the one in fill_in_local_interfaces could be avoided, and should be actually. I'll look into that as well. But for now, all improvements are planned for 2.4, not 2.2 regards Roland On Wed, Jan 4, 2017 at 8:20 AM, Stig Bjørlykke mailto:s...@bjorlykke.org>> wrote: On Tue, J

[Wireshark-dev] Preferences needed during Wireshark startup

2017-01-05 Thread Anders Broman
Hi, Looking into the time required to start Wireshark I came across a problem with the console on Windows where the preferences prefs.console_log_level prefs.gui_console_open is needed for logging to work but preferences are set pretty late in the startup phases as dissectors etc need to

Re: [Wireshark-dev] Remote Control Plugin - Can I submit to the Wireshark project

2017-01-06 Thread Anders Broman
Does this overlap with sharkd by Jacub, currently under review in gerrit? Regards Anders Den 6 jan. 2017 2:35 em skrev "Paul Offord" : Hi, Some time ago I wrote a Wireshark plugin (called Syncro) that enables a program to send commands to Wireshark. The command set is based on the capabilitie

[Wireshark-dev] Sharkd warnings when built with VisualStudio 2015 64bit

2017-02-01 Thread Anders Broman
Hi, In case some is interested :) "C:\Development\wsbuild-gpl\Wireshark.sln" (default target) (1) -> "C:\Development\wsbuild-gpl\sharkd.vcxproj.metaproj" (default target) (49) -> "C:\Development\wsbuild-gpl\sharkd.vcxproj" (default target) (153) -> C:\Development\wir

Re: [Wireshark-dev] Tshark: proto_tree not created on first pass with tap defined

2017-02-10 Thread Anders Broman
Hi, I guess the idea in tshark for the 2 pass analysis is not to create a tree on the first pass to increase performance and you probably just want the result of the Final pass over the file where hopefully all needed information is available. I suppose we require all code to handle a NULL tree.

[Wireshark-dev] Wireshark no longer builds on SuSE 11.3

2017-02-14 Thread Anders Broman
Hi, Wireshark no longer builds on SuSE 11.3 home/ericsson/ewireshark/trunk/filter_files.c:104: undefined reference to `g_list_free_full' /home/ericsson/ewireshark/trunk/filter_files.c:105: undefined reference to `g_list_free_full' /home/ericsson/ewireshark/trunk/filter_files.c:106: undefined ref

Re: [Wireshark-dev] Wireshark no longer builds on SuSE 11.3

2017-02-14 Thread Anders Broman
ost of the time I ended up hardcoding the functionality. regards Roland On Tue, Feb 14, 2017 at 1:28 PM, Peter Wu mailto:pe...@lekensteyn.nl>> wrote: On Tue, Feb 14, 2017 at 12:14:24PM +, Anders Broman wrote: > Hi, > Wireshark no longer builds on SuSE 11.3 > > home/ericsso

Re: [Wireshark-dev] Loading value_string from file?

2017-02-15 Thread Anders Broman
The diameter dissector builds value strings from file. The sminpec value string is built from a script. Regards Anders Den 15 feb. 2017 2:47 em skrev "Peter Wu" : > Hi, > > While many protocols have fixed value_string mappings, some of them are > quite dynamic (USB Vendor/Product IDs, "enterprise

Re: [Wireshark-dev] Loading value_string from file?

2017-02-15 Thread Anders Broman
The diameter value strings are built runtime as is the radius ones I think. Den 15 feb. 2017 3:35 em skrev "Peter Wu" : > On Wed, Feb 15, 2017 at 03:07:37PM +0100, Anders Broman wrote: > > The diameter dissector builds value strings from file. The sminpec value > > stri

[Wireshark-dev] Buildiing with Qt 5.8 fails on Windows

2017-03-09 Thread Anders Broman
Hi, Trying to build with Qt 5.8 and Visual Studio 2015 I get: C:\Development\wsbuild-gpl\ui\qt\moc_capture_file_dialog.cpp(113): error C2039: 'preview': is not a member of 'CaptureFileDialog' [C:\Development\wsbuild-gpl\ui\qt\qtui.vcxproj] C:\Development\wsbuild-gpl\ui\qt\moc_ca

Re: [Wireshark-dev] Buildiing with Qt 5.8 fails on Windows

2017-03-09 Thread Anders Broman
ously built in this directory? If so delete CMakeCache.txt, run the CMake generation step and then add "/t:Rebuild" to the msbuild command line to force a total rebuild. You can also just nuke the build dir and run the CMake gen and a normal build command. On 9 March 2017 at 11:43, Ande

Re: [Wireshark-dev] Buildiing with Qt 5.8 fails on Windows

2017-03-09 Thread Anders Broman
-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Anders Broman Sent: den 9 mars 2017 14:23 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Buildiing with Qt 5.8 fails on Windows > You can also just nuke the build dir and run the CMake gen an

Re: [Wireshark-dev] RTP player - a suggestion

2017-03-27 Thread Anders Broman
-Original Message- From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Jirka Novak Sent: den 26 mars 2017 21:41 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] RTP player - a suggestion Hello Erik, >> My proposal: >

Re: [Wireshark-dev] Ubuntu PPAs

2017-03-27 Thread Anders Broman
-Original Message- From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Peter Wu Sent: den 14 mars 2017 17:33 To: Bálint Réczey Cc: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Ubuntu PPAs On Tue, Mar 14, 2017 at 05:2

Re: [Wireshark-dev] RTP player - a suggestion

2017-03-27 Thread Anders Broman
-Original Message- > From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Anders Broman > Sent: Monday, March 27, 2017 4:12 AM > To: Developer support list for Wireshark > Subject: Re: [Wireshark-dev] RTP player - a suggestion &g

Re: [Wireshark-dev] Why does the extcap stuff take so long to start up?

2017-03-28 Thread Anders Broman
-Original Message- From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Guy Harris Sent: den 27 mars 2017 22:33 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Why does the extcap stuff take so long to start up? On Ma

Re: [Wireshark-dev] Adding libxml2 as optional Wireshark dependency

2017-04-05 Thread Anders Broman
Hi, Would https://github.com/leethomason/tinyxml2 be an option? Regards Anders From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Alexis La Goutte Sent: den 5 april 2017 16:14 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] A

Re: [Wireshark-dev] Debugging an assertion failure

2017-04-14 Thread Anders Broman
Hi I think you are using an illegal character in the preference name or module name. Regards Anders Den 14 apr. 2017 12:42 em skrev "Paul Offord" : > Hi, > > > > I need some advice. I’m debugging a problem with a dissector I’ve > written. Tshark fails with: > > … \epan\prefs.c:414:prefs_regist

  1   2   3   4   5   6   7   8   9   10   >