[Wireshark-dev] capturing on ppp interface on windows 7

2014-06-03 Thread Rahul Rohit
Hi, Can winpcap be made to capture packets on PPP interface in case of windows 7 . Regards Rahul Rohit DISCLAIMER: This message is proprietary to Aricent and is intended solely for the use of the individual to whom it is addressed. It may contain privileged or confidential information and

Re: [Wireshark-dev] capturing on ppp interface on windows 7

2014-06-03 Thread Guy Harris
On Jun 2, 2014, at 11:32 PM, Rahul Rohit rahul.ro...@aricent.com wrote: Can winpcap be made to capture packets on PPP interface in case of windows 7 . It probably can, if you significantly rewrite it; for example, if you rewrote it to include a lightweight filter driver than a transport

Re: [Wireshark-dev] New mac cmake setup

2014-06-03 Thread Alexis La Goutte
Hi Evan, On Tue, Jun 3, 2014 at 1:14 AM, gmail hsiv...@gmail.com wrote: I try against Macports. From my CMakeCache.txt GMODULE2_LDFLAGS:INTERNAL=-L/opt/local/lib;-lgmodule-2.0;-lglib-2.0;-lintl GMODULE2_LIBDIR:INTERNAL=/opt/local/lib GMODULE2_LIBRARIES:INTERNAL=gmodule-2.0;glib-2.0;intl =

Re: [Wireshark-dev] capturing on ppp interface on windows 7

2014-06-03 Thread Rahul Rohit
Hi , Can you please describe in detail as to which file is to be modified and what exactly to be done ? Regards Rahul Rohit -Original Message- From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Guy Harris Sent: Tuesday, June 03, 2014

Re: [Wireshark-dev] capturing on ppp interface on windows 7

2014-06-03 Thread Guy Harris
On Jun 3, 2014, at 12:48 AM, Rahul Rohit rahul.ro...@aricent.com wrote: Can you please describe in detail as to which file is to be modified No, but I can suggest that, of the source files in the packetNtx/driver directory of the WinPcap source, Openclos.c, Packet.c, Read.c, and Write.c may

Re: [Wireshark-dev] New mac cmake setup

2014-06-03 Thread Evan Huus
On Mon, Jun 2, 2014 at 7:14 PM, gmail hsiv...@gmail.com wrote: I try against Macports. From my CMakeCache.txt GMODULE2_LDFLAGS:INTERNAL=-L/opt/local/lib;-lgmodule-2.0;-lglib-2.0;-lintl GMODULE2_LIBDIR:INTERNAL=/opt/local/lib GMODULE2_LIBRARIES:INTERNAL=gmodule-2.0;glib-2.0;intl =

[Wireshark-dev] Is there a single document that describes converting from emem to wmem?

2014-06-03 Thread Richard Sharpe
Hi folks, I have to get a plugin that was developed a while ago converted to wmem. Is there a single document that describes the conversion process? -- Regards, Richard Sharpe (何以解憂?唯有杜康。--曹操) ___ Sent via:

Re: [Wireshark-dev] Reminder: 1.12 branch tomorrow

2014-06-03 Thread Bálint Réczey
Hi, 2014-05-23 6:33 GMT+07:00 Gerald Combs ger...@wireshark.org: Reminder: I'm going to create the master-1.12 branch along with the other changes listed below tomorrow. Original Message Subject: 1.12 branch + release schedule Date: Mon, 19 May 2014 14:46:42 -0700 From:

Re: [Wireshark-dev] Is there a single document that describes converting from emem to wmem?

2014-06-03 Thread Evan Huus
On Tue, Jun 3, 2014 at 1:07 PM, Richard Sharpe realrichardsha...@gmail.com wrote: Hi folks, I have to get a plugin that was developed a while ago converted to wmem. Is there a single document that describes the conversion process? There isn't a conversion guide specifically, but

Re: [Wireshark-dev] [Wireshark-commits] master c5de173: MBIM: do not access to hash map when it is not initialized yet

2014-06-03 Thread Evan Huus
Just create it once in the init routine, rather than when the first uuid is registered? Then you can guarantee it always exists. On Tue, Jun 3, 2014 at 2:01 PM, Wireshark code review code-review-do-not-re...@wireshark.org wrote: URL:

Re: [Wireshark-dev] [Wireshark-commits] master c5de173: MBIM: do not access to hash map when it is not initialized yet

2014-06-03 Thread Pascal Quantin
Hi Evan, 2014-06-03 20:09 GMT+02:00 Evan Huus eapa...@gmail.com: Just create it once in the init routine, rather than when the first uuid is registered? Then you can guarantee it always exists. This is what I initially did but changed my mind at the last minute as checking the existence of

Re: [Wireshark-dev] [Wireshark-commits] master c5de173: MBIM: do not access to hash map when it is not initialized yet

2014-06-03 Thread Evan Huus
On Tue, Jun 3, 2014 at 2:19 PM, Pascal Quantin pascal.quan...@gmail.com wrote: Hi Evan, 2014-06-03 20:09 GMT+02:00 Evan Huus eapa...@gmail.com: Just create it once in the init routine, rather than when the first uuid is registered? Then you can guarantee it always exists. This is what I

Re: [Wireshark-dev] Compiling with GCC enabling sse4.2?

2014-06-03 Thread Jakub Zawadzki
Hi, On Tue, Jun 03, 2014 at 08:37:49AM +, Anders Broman wrote: How do I go about compiling Wireshark with sse4.2 enabled? If I understand correctly I should add GCC flag -march=native somewhere? Anders, just to let you know your libc is already using sse4.2 and it shows up in your

[Wireshark-dev] Building with QT on Windows using VS 2013

2014-06-03 Thread Graham Bloice
Experimenting using VS2013 (Pro) to build Wireshark, I ran into some QT issues and for posterity thought I'd list them here: 1. You need a VS2013 compatible version of QT, I used qt-opensource-windows-x86-msvc2013-5.3.0.exe. I can't remember if I forced the install to C:\QT, but it

Re: [Wireshark-dev] Building with QT on Windows using VS 2013

2014-06-03 Thread Graham Bloice
On 3 June 2014 22:59, Graham Bloice graham.blo...@trihedral.com wrote: Experimenting using VS2013 (Pro) to build Wireshark, I ran into some QT issues and for posterity thought I'd list them here: 1. You need a VS2013 compatible version of QT, I used

Re: [Wireshark-dev] Is there a single document that describes converting from emem to wmem?

2014-06-03 Thread Richard Sharpe
On Tue, Jun 3, 2014 at 10:13 AM, Evan Huus eapa...@gmail.com wrote: On Tue, Jun 3, 2014 at 1:07 PM, Richard Sharpe realrichardsha...@gmail.com wrote: Hi folks, I have to get a plugin that was developed a while ago converted to wmem. Is there a single document that describes the conversion