[Wireshark-dev] Problem decrypting TLS with sslkeylog in Wireshark

2024-12-19 Thread שי מרדכי
Dear Wireshark Developers, I am a computer science student and I am writing to you today because I am experiencing a problem decrypting TLS traffic in Wireshark. I have created a PCAP file using a Python script that utilizes the Scapy and Cryptography libraries. The script encrypts the packets be

Re: [Wireshark-dev] Problem with ENC_BCD_DIGITS_0_9 odd/even

2020-12-09 Thread Jaap Keuter
Hi, Indeed a nasty one. You need sub-octet length indication here, which doesn’t exist. But since it’s limited to nibbles, a single flag is all that’s really needed. Anything above the ENC_CHARENCODING_MASK would be fine. This would be the minimalist implementation of this: proto_tree_add_item

[Wireshark-dev] Problem with ENC_BCD_DIGITS_0_9 odd/even

2020-12-09 Thread Anders Broman via Wireshark-dev
Hi, There is a problem with the BCD encoded numbers as they may be padded and unfortunately with Zero. "Encoding scheme: BCD. Note: Filler H'0 (last digit) is used in case of the odd number of digits." In order to present this properly It would be good to be able to pass an odd/even indi

Re: [Wireshark-dev] Problem in 'packet-f5ethtrailer.c'

2020-03-20 Thread João Valverde
On 20/03/20 17:45, Guy Harris wrote: On Mar 20, 2020, at 8:09 AM, João Valverde wrote: On 19/03/20 18:38, Guy Harris wrote: This isn't unique to Windows. It dates back to old BSD, in which struct in_addr contained a union of multiple different types for an IP address, with some types be

Re: [Wireshark-dev] Problem in 'packet-f5ethtrailer.c'

2020-03-20 Thread Guy Harris
On Mar 20, 2020, at 8:09 AM, João Valverde wrote: > On 19/03/20 18:38, Guy Harris wrote: > >> This isn't unique to Windows. It dates back to old BSD, in which struct >> in_addr contained a union of multiple different types for an IP address, >> with some types being structures breaking up th

Re: [Wireshark-dev] Problem in 'packet-f5ethtrailer.c'

2020-03-20 Thread João Valverde
On 19/03/20 18:38, Guy Harris wrote: On Mar 19, 2020, at 7:40 AM, Gisle Vanem wrote: I'm surprised no one has come across this compile error yet: epan/dissectors/packet-f5ethtrailer.c(482): error C2143: syntax error: missing ';' before '.' epan/dissectors/packet-f5ethtrailer.c(485): error C

Re: [Wireshark-dev] Problem in 'packet-f5ethtrailer.c'

2020-03-20 Thread Guy Harris
On Mar 19, 2020, at 7:40 AM, Gisle Vanem wrote: > I'm surprised no one has come across this compile > error yet: > epan/dissectors/packet-f5ethtrailer.c(482): error C2143: syntax error: > missing ';' before '.' > epan/dissectors/packet-f5ethtrailer.c(485): error C2224: left of '.S_addr' > mus

Re: [Wireshark-dev] Problem in 'packet-f5ethtrailer.c'

2020-03-19 Thread Guy Harris
On Mar 19, 2020, at 11:38 AM, Guy Harris wrote: > In addition, we tend to use src_, rather than s_, as a prefix for "source", > and "dst_" or "dest" as a prefix for "destination", so I posted a change to > rename s_addr and d_addr to src_addr and dst_addr: > > https://code.wireshark.org/

Re: [Wireshark-dev] Problem in 'packet-f5ethtrailer.c'

2020-03-19 Thread Guy Harris
On Mar 19, 2020, at 7:40 AM, Gisle Vanem wrote: > I'm surprised no one has come across this compile > error yet: > epan/dissectors/packet-f5ethtrailer.c(482): error C2143: syntax error: > missing ';' before '.' > epan/dissectors/packet-f5ethtrailer.c(485): error C2224: left of '.S_addr' > must

Re: [Wireshark-dev] Problem in 'packet-f5ethtrailer.c'

2020-03-19 Thread Jason Cohen
Gisle, Do you have the steps you used to setup your build environment, and then the steps to build Wireshark? Unless we're able to reproduce it, there may be little we can do. It certainly hasn't been something I've seen either. Jason On Thu, Mar 19, 2020 at 12:34 PM Gisle Vanem wrote: > Mayn

Re: [Wireshark-dev] Problem in 'packet-f5ethtrailer.c'

2020-03-19 Thread Maynard, Chris via Wireshark-dev
> -Original Message- > From: Wireshark-dev On Behalf > Of Gisle Vanem > Sent: Thursday, March 19, 2020 1:33 PM > To: wireshark-dev@wireshark.org > Subject: Re: [Wireshark-dev] Problem in 'packet-f5ethtrailer.c' > > Maynard, Chris wrote: > > &g

Re: [Wireshark-dev] Problem in 'packet-f5ethtrailer.c'

2020-03-19 Thread Graham Bloice
On Thu, 19 Mar 2020 at 17:34, Gisle Vanem wrote: > Maynard, Chris wrote: > > > Which specific release of VS2019 are you running? This is a bit of a > stretch, but *possibly* your version could use an update? > > I have the latest AFAIK I ran vs_installer last week. > > From 'cl /?': Version 1

Re: [Wireshark-dev] Problem in 'packet-f5ethtrailer.c'

2020-03-19 Thread Gisle Vanem
Maynard, Chris wrote: Which specific release of VS2019 are you running? This is a bit of a stretch, but *possibly* your version could use an update? I have the latest AFAIK I ran vs_installer last week. From 'cl /?': Version 19.24.28319 for x86 From 'vswhere': VisualStudio.16.Release/16.4

Re: [Wireshark-dev] Problem in 'packet-f5ethtrailer.c'

2020-03-19 Thread Graham Bloice
On Thu, 19 Mar 2020 at 14:41, Gisle Vanem wrote: > BTW. > note the time-stamp on the 'a' file. How come it > gets updated as soon as I do a 'git pull'? > From a 'git log packet-f5ethtrailer.c', the last > change was 19 days ago. > > See https://git.wiki.kernel.org/index.php/GitFaq#Why_isn.27t_Gi

Re: [Wireshark-dev] Problem in 'packet-f5ethtrailer.c'

2020-03-19 Thread Maynard, Chris via Wireshark-dev
> -Original Message- > From: Wireshark-dev On Behalf > Of Gisle Vanem > Sent: Thursday, March 19, 2020 10:41 AM > To: wireshark-dev > Subject: [Wireshark-dev] Problem in 'packet-f5ethtrailer.c' > > I'm surprised no one has come across this compile

[Wireshark-dev] Problem in 'packet-f5ethtrailer.c'

2020-03-19 Thread Gisle Vanem
I'm surprised no one has come across this compile error yet: epan/dissectors/packet-f5ethtrailer.c(482): error C2143: syntax error: missing ';' before '.' epan/dissectors/packet-f5ethtrailer.c(485): error C2224: left of '.S_addr' must have struct/union type epan/dissectors/packet-f5ethtrai

Re: [Wireshark-dev] Problem building a dissector for 2.6

2018-05-21 Thread Graham Bloice
On Mon, 21 May 2018 at 16:02, Andy Ling wrote: > Hi, > > > > I am trying to update to Wireshark 2.6 building for Windows 64bit. I have > a custom GIOP dissector which was previously built for Wireshark 2.2.5 > > The dissector is in the file packet-q_quentin.c and I have copied that > file to the

[Wireshark-dev] Problem building a dissector for 2.6

2018-05-21 Thread Andy Ling
Hi, I am trying to update to Wireshark 2.6 building for Windows 64bit. I have a custom GIOP dissector which was previously built for Wireshark 2.2.5 The dissector is in the file packet-q_quentin.c and I have copied that file to the epan/dissectors directory. First, adding it to the CMakeListsCu

[Wireshark-dev] Problem with background dumpcap in Windows

2018-02-20 Thread Craig Jackson
Running on recent builds on Windows, I've had a problem with dumpcap being started and exiting repeatedly in the background. This seems to happening when it's being restarted to update the interface statistics, such as happens after a capture file is closed. The interface statistics update just fin

Re: [Wireshark-dev] Problem building new style plugin

2018-02-06 Thread Paul Offord
functions and I’ve never really had to think about it – it just seemed to work. Best regards…Paul From: Wireshark-dev [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Anders Broman Sent: 06 February 2018 05:33 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Problem

Re: [Wireshark-dev] Problem building new style plugin

2018-02-05 Thread Anders Broman
Hi, Did you try to delete the build dir and start over with cmake/msbuild ? Regards Anders Den 6 feb. 2018 2:17 fm skrev "João Valverde" < joao.valve...@tecnico.ulisboa.pt>: > Hi Paul, > > DLL_PUBLIC is not "new style" (it's just a macro definition), although the > inference is understandable. >

Re: [Wireshark-dev] Problem building new style plugin

2018-02-05 Thread João Valverde
Hi Paul, DLL_PUBLIC is not "new style" (it's just a macro definition), although the inference is understandable. The hello plugin example is specific to Linux and GCC, the idea being that you can just apt install wireshark (or equivalent) and build only your plugin against that. As far as

[Wireshark-dev] Problem building new style plugin

2018-02-05 Thread Paul Offord
Sorry to bother you all with this but I can't seem to figure this out. I was running with a git master branch that I think was 2.5. I had a plugin that I could build and it worked OK. At the weekend I did a git pull for master and now I can't get my plugin to build. I reread the plugin.README

Re: [Wireshark-dev] Problem in locating wireshark source files on Ubuntu 16.04

2017-10-22 Thread Guy Harris
On Oct 22, 2017, at 9:59 AM, Manik Khandelwal wrote: > I am new to wireshark and i am currently working over building a dissector > using plugins. I have read Readme.developer and Readme.Plugin and it is > talking about the changes that are to be made in files like CMakefiles.txt, > Makefile.

[Wireshark-dev] Problem in locating wireshark source files on Ubuntu 16.04

2017-10-22 Thread Manik Khandelwal
Hello all, I am new to wireshark and i am currently working over building a dissector using plugins. I have read Readme.developer and Readme.Plugin and it is talking about the changes that are to be made in files like CMakefiles.txt, Makefile.am, etc but i was unable to locate these files on my sy

Re: [Wireshark-dev] Problem while compiling wireshark master

2017-07-24 Thread Roland Knall
Ah, sorry, overlooked that cheers On Mon, Jul 24, 2017 at 10:01 AM, Alexis La Goutte < alexis.lagou...@gmail.com> wrote: > > > On Mon, Jul 24, 2017 at 9:48 AM, Roland Knall wrote: > >> Hi >> >> This is not an issue with wireshark code, but rather with the version of >> flex used by the compiler

Re: [Wireshark-dev] Problem while compiling wireshark master

2017-07-24 Thread Alexis La Goutte
On Mon, Jul 24, 2017 at 9:48 AM, Roland Knall wrote: > Hi > > This is not an issue with wireshark code, but rather with the version of > flex used by the compiler. See https://github.com/westes/flex/commit/ > 8c098febc9a599397921e9b6938b7fb85e38cc7e for a commit fixing this issue, > but so far Ub

Re: [Wireshark-dev] Problem while compiling wireshark master

2017-07-24 Thread Roland Knall
Hi This is not an issue with wireshark code, but rather with the version of flex used by the compiler. See https://github.com/westes/flex/commit/8c098febc9a599397921e9b6938b7fb85e38cc7e for a commit fixing this issue, but so far Ubuntu does not ship the right version of flex to fix the warning. c

Re: [Wireshark-dev] Problem while compiling wireshark master

2017-07-04 Thread Guy Harris
On Jul 4, 2017, at 5:19 AM, Pascal Quantin wrote: > Guy, do you remember because of which libnl version you moved net/if.h > inclusion after libnl ones in 592a0fcf04c3f7f9f23476525877763303a1a87d? > Should we include net/if.h first when compiling with libnl3 to cope with this > (newly introduce

Re: [Wireshark-dev] Problem while compiling wireshark master

2017-07-04 Thread Remy Leone
I've tried with libnl but it still doesn't work: "Unable to open ./.svn/entries", "ar: `u' modifier ignored since `D' is the default (see `U')", "ar: `u' modifier ignored since `D' is the default (see `U')", "ascend_scanner.c: In function 'yy_get_next_buffer':",

Re: [Wireshark-dev] Problem while compiling wireshark master

2017-07-04 Thread Alexis La Goutte
On Tue, Jul 4, 2017 at 2:19 PM, Pascal Quantin wrote: > Guy, do you remember because of which libnl version you moved net/if.h > inclusion after libnl ones in 592a0fcf04c3f7f9f23476525877763303a1a87d? > Should we include net/if.h first when compiling with libnl3 to cope with > this (newly introdu

Re: [Wireshark-dev] Problem while compiling wireshark master

2017-07-04 Thread Pascal Quantin
Guy, do you remember because of which libnl version you moved net/if.h inclusion after libnl ones in 592a0fcf04c3f7f9f23476525877763303a1a87d? Should we include net/if.h first when compiling with libnl3 to cope with this (newly introduced?) redefinition? Pascal. 2017-07-04 14:06 GMT+02:00 Remy Le

Re: [Wireshark-dev] Problem while compiling wireshark master

2017-07-04 Thread Remy Leone
I get similar problems with Ubuntu: "Unable to open /tmp/wireshark-master/.svn/entries", "/tmp/wireshark-master/wiretap/ascend_scanner.c: In function 'yy_get_next_buffer':", "/tmp/wireshark-master/wiretap/ascend_scanner.c:2502:47: warning: comparison between signed and unsi

Re: [Wireshark-dev] Problem while compiling wireshark master

2017-07-04 Thread Remy Leone
I'm not sure. Maybe it's only related to the debian stable version. I'm going to see if it also fails on a ubuntu 16.04. A solution to test that would be to add the last debian stable version to buildbot. Would that be complicated to set up? 2017-07-04 13:39 GMT+02:00 Pascal Quantin : > > > 2017-

Re: [Wireshark-dev] Problem while compiling wireshark master

2017-07-04 Thread Pascal Quantin
2017-07-04 13:37 GMT+02:00 Pascal Quantin : > Hi Remy, > > 2017-07-04 13:13 GMT+02:00 Remy Leone : > >> Hello, >> >> I stumble upon this error in wireshark master. I use debian stretch with >> system packages installed from the apt-get build-dep tshark. Does it >> sound familiar? >> >> "/t

Re: [Wireshark-dev] Problem while compiling wireshark master

2017-07-04 Thread Pascal Quantin
Hi Remy, 2017-07-04 13:13 GMT+02:00 Remy Leone : > Hello, > > I stumble upon this error in wireshark master. I use debian stretch with > system packages installed from the apt-get build-dep tshark. Does it > sound familiar? > > "/tmp/wireshark-master/epan/dissectors/packet-parlay.c:5381:2

Re: [Wireshark-dev] Problem while compiling wireshark master

2017-07-04 Thread Graham Bloice
On 4 July 2017 at 12:13, Remy Leone wrote: > Hello, > > I stumble upon this error in wireshark master. I use debian stretch with > system packages installed from the apt-get build-dep tshark. Does it > sound familiar? > > "/tmp/wireshark-master/epan/dissectors/packet-parlay.c:5381:27: > w

[Wireshark-dev] Problem while compiling wireshark master

2017-07-04 Thread Remy Leone
Hello, I stumble upon this error in wireshark master. I use debian stretch with system packages installed from the apt-get build-dep tshark. Does it sound familiar? "/tmp/wireshark-master/epan/dissectors/packet-parlay.c:5381:27: warning: 'org_csapi_policy_TpPolicyConditionListType' define

Re: [Wireshark-dev] Problem with val_to_str inside BASE_CUSTOM callback function

2016-10-21 Thread Thomas Wiens
On 21.10.2016 22:49, Michael Mann wrote: > > Depending on what you're doing, you could go with > proto_tree_add_xxx_format_value. I think that's how most dissectors > end up avoiding the need for BASE_CUSTOM callback. Maybe one of you has another solution for what I want to realize. In my prot

Re: [Wireshark-dev] Problem with val_to_str inside BASE_CUSTOM callback function

2016-10-21 Thread Michael Mann
16 4:45 pm Subject: Re: [Wireshark-dev] Problem with val_to_str inside BASE_CUSTOM callback function On 21.10.2016 22:17, Guy Harris wrote: > On Oct 21, 2016, at 1:08 PM, Jaap Keuter wrote: > >> For my understanding, would this be covered by using >> val_to_str_wmem(wme

Re: [Wireshark-dev] Problem with val_to_str inside BASE_CUSTOM callback function

2016-10-21 Thread Thomas Wiens
On 21.10.2016 22:17, Guy Harris wrote: > On Oct 21, 2016, at 1:08 PM, Jaap Keuter wrote: > >> For my understanding, would this be covered by using >> val_to_str_wmem(wmem_file_scope(), val, vs, fmt); > > Yes, but the strings will remain allocated until the capture file is closed, > even if that

Re: [Wireshark-dev] Problem with val_to_str inside BASE_CUSTOM callback function

2016-10-21 Thread Guy Harris
On Oct 21, 2016, at 1:08 PM, Jaap Keuter wrote: > For my understanding, would this be covered by using > val_to_str_wmem(wmem_file_scope(), val, vs, fmt); Yes, but the strings will remain allocated until the capture file is closed, even if that's not necessary. _

Re: [Wireshark-dev] Problem with val_to_str inside BASE_CUSTOM callback function

2016-10-21 Thread Jaap Keuter
On 21-10-16 19:47, Guy Harris wrote: > On Oct 21, 2016, at 9:57 AM, Thomas Wiens wrote: > >> This happens only when calling val_to_str inside the callback function. >> When outside, then all is Ok (getting formatted result string on failure). >> When I'm calling try_val_to_str_idx with a non exis

Re: [Wireshark-dev] Problem with val_to_str inside BASE_CUSTOM callback function

2016-10-21 Thread Guy Harris
On Oct 21, 2016, at 9:57 AM, Thomas Wiens wrote: > This happens only when calling val_to_str inside the callback function. > When outside, then all is Ok (getting formatted result string on failure). > When I'm calling try_val_to_str_idx with a non existing value, then I > get -1 as index and NUL

[Wireshark-dev] Problem with val_to_str inside BASE_CUSTOM callback function

2016-10-21 Thread Thomas Wiens
Hi, I'am using fieldtype BASE_CUSTOM and a callback function in my own dissector. Works well, but when I am calling val_to_str with a value which is not inside the value_string list, then wireshark crashes. This happens only when calling val_to_str inside the callback function. When outside, then

Re: [Wireshark-dev] Problem with compiling the master branch of Wireshark (./ws_version_info.c)

2016-08-30 Thread Remy Leone
Indeed. Thanks a lot. Le mar. 30 août 2016 à 17:23, João Valverde < joao.valve...@tecnico.ulisboa.pt> a écrit : > > > On 08/30/2016 03:53 PM, Remy Leone wrote: > > Hello, > > Hi, > > > When I try to compile the master branch wireshark using the following > > commands: > > ./autogen.sh > > ./confi

Re: [Wireshark-dev] Problem with compiling the master branch of Wireshark (./ws_version_info.c)

2016-08-30 Thread João Valverde
On 08/30/2016 03:53 PM, Remy Leone wrote: Hello, Hi, When I try to compile the master branch wireshark using the following commands: ./autogen.sh ./configure make I get that it's impossible to create the symbolic link for './ws_version_info.c': because the file exists. I've tried git clean

[Wireshark-dev] Problem with compiling the master branch of Wireshark (./ws_version_info.c)

2016-08-30 Thread Remy Leone
Hello, When I try to compile the master branch wireshark using the following commands: ./autogen.sh ./configure make I get that it's impossible to create the symbolic link for './ws_version_info.c': because the file exists. I've tried git clean -d -f but it stills shows up. I'm using ubuntu 16.04

Re: [Wireshark-dev] Problem writing a file dissector for vwr capture files

2015-09-02 Thread Michal Labedzki
I have a plan to improve support of file-dissectors. Next step for me is change "Open" option to support both Capture (high priority) and Files-formats. Nothing new here, just add files support as captures are supported right now, something like Type in Open dialogs contains "All, All captures file

Re: [Wireshark-dev] Problem writing a file dissector for vwr capture files

2015-08-30 Thread Hadriel Kaplan
When you say "properly", you mean like so it can be submitted into master? I think the *right* thing is a much bigger change, and involves creating wiretype subtypes for each file-format reader type. But in the meantime you could wrap all your code in #ifdef so it's not normally compiled in, but wh

Re: [Wireshark-dev] Problem writing a file dissector for vwr capture files

2015-08-30 Thread Joerg Mayer
On Sun, Aug 30, 2015 at 07:53:09AM -0400, Hadriel Kaplan wrote: > Did you add the magic info into the magic_files array in > wiretap/mime_file.c? It looks like it's necessary. Ah, that was the part I was missing. Thanks! Of course now that I did look at it, it doesn't help me because the file for

Re: [Wireshark-dev] Problem writing a file dissector for vwr capture files

2015-08-30 Thread Hadriel Kaplan
Did you add the magic info into the magic_files array in wiretap/mime_file.c? It looks like it's necessary. -hadriel On Sun, Aug 30, 2015 at 4:22 AM, Joerg Mayer wrote: > Hello, > > I'm trying to write a file dissector for the IxVeriWave (.vwr) capture files > (without loosing the ability to ope

[Wireshark-dev] Problem writing a file dissector for vwr capture files

2015-08-30 Thread Joerg Mayer
Hello, I'm trying to write a file dissector for the IxVeriWave (.vwr) capture files (without loosing the ability to open said capture files normally of course) and am failing: Running "tshark -X 'read_format:MIME Files Format' -V -r testfile.vwr" (or the equivalent steps in wireshark) results in

Re: [Wireshark-dev] Problem with http2

2015-07-03 Thread Pascal Quantin
Le 3 juil. 2015 10:29 AM, "Luis Espla" a écrit : > > Capture file attached and I'll go to open a bug in bugzilla Thanks Luis, it confirms that this is a side effect of the change I was talking about. Pascal. > > On 2 July 2015 at 12:28, Pascal Quantin wrote: >> >> 2015-07-02 11:03 GMT+02:00 Lu

Re: [Wireshark-dev] Problem with http2

2015-07-03 Thread Luis Espla
Capture file attached and I'll go to open a bug in bugzilla On 2 July 2015 at 12:28, Pascal Quantin wrote: > 2015-07-02 11:03 GMT+02:00 Luis Espla : > >> Hello, >> Until now, I have used wireshark 1.99.5 and it can recognise http2 >> traffic, but now I have updated to 1.99.7 and I need to actív

Re: [Wireshark-dev] Problem with http2

2015-07-02 Thread Pascal Quantin
2015-07-02 11:03 GMT+02:00 Luis Espla : > Hello, > Until now, I have used wireshark 1.99.5 and it can recognise http2 > traffic, but now I have updated to 1.99.7 and I need to actívate it with > Analyze/Decode As option. Why do I need it?, what did it change? > And I want to use it with tshark i

[Wireshark-dev] Problem with http2

2015-07-02 Thread Luis Espla
Hello, Until now, I have used wireshark 1.99.5 and it can recognise http2 traffic, but now I have updated to 1.99.7 and I need to actívate it with Analyze/Decode As option. Why do I need it?, what did it change? And I want to use it with tshark is there any command line option for telling it Deco

Re: [Wireshark-dev] Problem with connecting to Gerrit-Server by use of SSH-Connection

2015-02-13 Thread Alexis La Goutte
Hi, It is possible to use HTTP(S) but need to generate a "password" Need to go Account Setting => HTTP Password After you have the URL on Project => General (it is https://usern...@code.wireshark.org/review/wireshark ) Regards, On Fri, Feb 13, 2015 at 4:23 PM, Graham Bloice wrote: > On 13 Feb

Re: [Wireshark-dev] Problem with connecting to Gerrit-Server by use of SSH-Connection

2015-02-13 Thread Graham Bloice
On 13 February 2015 at 10:54, FIXED-TERM Scholz Tobias (DC-IA/EAM6) < fixed-term.tobias.sch...@boschrexroth.de> wrote: > Hello, > > I’ve improved an existing Wireshark dissector. The code is ready for an > upload to the Wireshark Gerrit-Server. > > Due to that I used those two guides ( > *http:/

[Wireshark-dev] Problem with connecting to Gerrit-Server by use of SSH-Connection

2015-02-13 Thread FIXED-TERM Scholz Tobias (DC-IA/EAM6)
Hello, I've improved an existing Wireshark dissector. The code is ready for an upload to the Wireshark Gerrit-Server. Due to that I used those two guides ( http://wiki.wireshark.org/Development/SubmittingPatches/GitForWindows and https://code.wireshark.org/review/Documentation/user-upload.htm

[Wireshark-dev] Problem with Gerrit and Wordpress

2015-02-09 Thread Bryant Eastham
All: I am having problems setting up a new Gerrit account using Wordpress. Tracing the interaction it appears that code.wireshark.org tries to do a post to Wordpress using http that gets redirected to https, but the next request is a get instead of a post and the process stalls at that point.

Re: [Wireshark-dev] Problem with building fresh on Mac 10.10.1

2014-12-20 Thread Guy Harris
On Dec 20, 2014, at 2:53 AM, Roland Knall wrote: > The setupscript does not seem to work properly. All I get are the following > messages: > > ./macosx-setup.sh: line 578: test: 10.1: integer expression expected > > ./macosx-setup.sh: line 578: test: 10.1: integer expression expected Try th

[Wireshark-dev] Problem with building fresh on Mac 10.10.1

2014-12-20 Thread Roland Knall
Hi The setupscript does not seem to work properly. All I get are the following messages: ./macosx-setup.sh: line 578: test: 10.1: integer expression expected ./macosx-setup.sh: line 578: test: 10.1: integer expression expected macosx-setup.sh: Couldn't find an SDK for OS X 10.10.1 or later I

[Wireshark-dev] Problem with G722 codec in rtp_player

2014-11-25 Thread koundinya poluri
Hi , I am not sure if this is the right list to post this in ...so please bear with me.I am working on rtp stream capture in wireshark. I tried playing G722 codec rtp stream and cant hear any audio using the RTP player. I went through the code and found that rtp_player uses SBC plugin for dec

Re: [Wireshark-dev] Problem with Git/GitHub and ssh

2014-08-02 Thread Alexis La Goutte
On Sat, Aug 2, 2014 at 12:21 PM, RobiOneKenobi wrote: > Hi all, > > > > I’ve problems to connect with Git and ssh : > > > > > > > > > > > > I followed all the things described here > https://help.github.com/articles/error-permission-denied-publickey but > nothing worked, always same error > > > >

[Wireshark-dev] Problem with Git/GitHub and ssh

2014-08-02 Thread RobiOneKenobi
Hi all, I've problems to connect with Git and ssh : I followed all the things described here https://help.github.com/articles/error-permission-denied-publickey but nothing worked, always same error Could someone help ? RobiOneKenobi _

Re: [Wireshark-dev] Problem with qtshark command line

2014-07-21 Thread Joerg Mayer
On Mon, Jul 21, 2014 at 11:07:57AM +0200, Alexis La Goutte wrote: > The help is wrong... (Copy/paste from gtk) > -i and -k option is not yet supported by qtshark OK, that explains it :-) Thanks! Jörg -- Joerg Mayer We are stuck with technology when

Re: [Wireshark-dev] Problem with qtshark command line

2014-07-21 Thread Alexis La Goutte
Hi joerg The help is wrong... (Copy/paste from gtk) -i and -k option is not yet supported by qtshark I have start a patch but need more time to work... Le lundi 21 juillet 2014, Joerg Mayer a écrit : > Hello, > > the following works with wireshark but not qtshark: > > jmayer@egg:~/work/wiresh

[Wireshark-dev] Problem with qtshark command line

2014-07-20 Thread Joerg Mayer
Hello, the following works with wireshark but not qtshark: jmayer@egg:~/work/wireshark/git(review/gerald_combs/wsug-intro-asciidoc)> qtshark -i wlan0 -k FIX: packet list heading menu sensitivity 08:51:34.953 Dbg plugin_dir: lib/wireshark/plugins/1.99.0 08:51:35.010 Main Dbg Translator en_US

Re: [Wireshark-dev] Problem...

2013-11-18 Thread Herb Falk
ovember 17, 2013 5:04 PM To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Problem... 2013/11/17 Herb Falk mailto:h...@sisconet.com>> mailto:h...@sisconet.com>> Here is what is in config.nmake: INSTALL_DIR=wireshark-gtk2 Here is the path and the file: C:\wireshar

Re: [Wireshark-dev] Problem...

2013-11-17 Thread Pascal Quantin
2013/11/17 Herb Falk > Here is what is in config.nmake: INSTALL_DIR=wireshark-gtk2 > > Here is the path and the file: > C:\wireshark\wireshark-gtk2\share\glib-2.0\schemas\gschemas.compiled > Hi, did you try to run c:\wireshark\wireshark-gtk2\wireshark.exe as Bill suggested? On Windows, after b

Re: [Wireshark-dev] Problem...

2013-11-17 Thread Herb Falk
or Wireshark Subject: Re: [Wireshark-dev] Problem... > > On 11/17/2013 12:53 PM, Herb Falk wrote: >> I just got the SVN stuff to compile, but from the documentation I >> can't figure out what file is missing and where to put it. >> > > Based upon some prelim

Re: [Wireshark-dev] Problem...

2013-11-17 Thread Bill Meier
On 11/17/2013 12:53 PM, Herb Falk wrote: I just got the SVN stuff to compile, but from the documentation I can't figure out what file is missing and where to put it. Based upon some preliminary research, it's possible that a setup command will be needed. I need to do a little further resea

Re: [Wireshark-dev] Problem...

2013-11-17 Thread Herb Falk
k you. -Original Message- From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Bill Meier Sent: Sunday, November 17, 2013 2:00 PM To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Problem... On 11/17/2013 12:53 PM, Herb Falk wrot

Re: [Wireshark-dev] Problem...

2013-11-17 Thread Bill Meier
On 11/17/2013 12:53 PM, Herb Falk wrote: I just got the SVN stuff to compile, but from the documentation I can’t figure out what file is missing and where to put it… Based upon some preliminary research, it's possible that a setup command will be needed. I need to do a little further resea

[Wireshark-dev] Problem associating filter with bytes...

2013-11-01 Thread David Long
I am having a problem similiar to this post. http://permalink.gmane.org/gmane.network.wireshark.devel/10572 I ran this exact lua script http://delog.wordpress.com/2010/09/27/create-a-wireshark-dissector-in-lua/ I made a slight change to associate the dissector with port 80 because I have a test

Re: [Wireshark-dev] Problem with asn2wrs and idmp

2013-09-16 Thread Joerg Mayer
On Mon, Sep 16, 2013 at 11:48:54PM +0200, Joerg Mayer wrote: > Thanks. I just copied over the change to cmake. Out of curiosity: > How did you find out which file was missing, so I may be able to > fix this myself in the future? And another question: I noticed that the IMPORT statements in .cnf fi

Re: [Wireshark-dev] Problem with asn2wrs and idmp

2013-09-16 Thread Joerg Mayer
On Mon, Sep 16, 2013 at 10:13:41PM +, Christopher Maynard wrote: > Joerg Mayer writes: > > > Thanks. I just copied over the change to cmake. Out of curiosity: > > How did you find out which file was missing, so I may be able to > > fix this myself in the future? [Explanation deleted] > so I

Re: [Wireshark-dev] Problem with asn2wrs and idmp

2013-09-16 Thread Christopher Maynard
Joerg Mayer writes: > When I try to generate the idmp dissctor in asn1/idmp/, I get an error: > > If I build all asn1 dissectors in order (make in asn1/), then it builds fine, > so it looks like there is some sort of dependency problem. It looks like the dependency in this case was on x509af.

Re: [Wireshark-dev] Problem with asn2wrs and idmp

2013-09-16 Thread Christopher Maynard
Joerg Mayer writes: > Thanks. I just copied over the change to cmake. Out of curiosity: > How did you find out which file was missing, so I may be able to > fix this myself in the future? Thanks for applying to cmake. I noticed your output: > /home/jmayer/work/wireshark/svn/trunk/asn1/x509ce/x

Re: [Wireshark-dev] Problem with asn2wrs and idmp

2013-09-16 Thread Joerg Mayer
On Mon, Sep 16, 2013 at 09:36:07PM +, Christopher Maynard wrote: > Joerg Mayer writes: > > > When I try to generate the idmp dissctor in asn1/idmp/, I get an error: > > > > If I build all asn1 dissectors in order (make in asn1/), then it builds > > fine, > > so it looks like there is some s

[Wireshark-dev] Problem with asn2wrs and idmp

2013-09-16 Thread Joerg Mayer
When I try to generate the idmp dissctor in asn1/idmp/, I get an error: jmayer@egg:~/work/wireshark/svn/build/test/asn1/idmp> make Scanning dependencies of target x509ce-exp.cnf ASN.1 to Wireshark dissector compiler /home/jmayer/work/wireshark/svn/trunk/asn1/x509ce/x509ce.cnf:18: UserWarning: Non

Re: [Wireshark-dev] Problem in finding in email id of mentor

2013-04-23 Thread Surbhi Jain
Shobhank Sharma Thank You! Surbhi Jain 3rd year , Computer Science Engineering University School of Information & Communication Technology Contact Email ID - surbhija...@acm.org On Mon, Apr 22, 2013 at 7:07 AM, Shobhank Sharma wrote: > Surbhi, > > You can get email id on about page -> Author

Re: [Wireshark-dev] Problem in finding in email id of mentor

2013-04-22 Thread Shobhank Sharma
Surbhi, You can get email id on about page -> Authors http://www.wireshark.org/about.html On Mon, Apr 22, 2013 at 11:03 AM, Harsh Chhabra wrote: > Hi surbhi, > Good to hear that you are interested in working with wireshark,I will look > in to the matter after some time(half an hour later) at n

Re: [Wireshark-dev] Problem in finding in email id of mentor

2013-04-22 Thread Harsh Chhabra
Hi surbhi, Good to hear that you are interested in working with wireshark,I will look in to the matter after some time(half an hour later) at night.Right now i am doing an urgent work of my cousin.Till then post the same message in group hope they people will do something for you. Thanks On Mon, A

[Wireshark-dev] Problem in finding in email id of mentor

2013-04-22 Thread Surbhi Jain
Dear Sir I am interested to work in a project under Prof. Gerald Combs. But I am not getting any page to contact and reach the mentors involved in the community under the projects. Please help me to get email id of above mentioned Prof. I will be highly obliged. Waiting for your reply! Yours sin

Re: [Wireshark-dev] Problem with tshark and SMB

2013-02-17 Thread Daniel Franganillo
Is this behaviour expected or should I file a bug report? Thanks. -- Enviado desde mi teléfono con K-9 Mail.___ Sent via:Wireshark-dev mailing list Archives:http://www.wireshark.org/lists/wireshark-dev Unsubscribe:

Re: [Wireshark-dev] Problem getting Eclipse working

2012-06-28 Thread Alex Lindberg
ing my learning. Alex Lindberg --- On Thu, 6/28/12, Roland Knall wrote: > From: Roland Knall > Subject: [Wireshark-dev] Problem getting Eclipse working > To: "Developer support list for Wireshark" > Date: Thursday, June 28, 2012, 8:51 AM > Hi > > Little off-topic.

[Wireshark-dev] Problem getting Eclipse working

2012-06-28 Thread Roland Knall
Hi Little off-topic. Wireshark Development is kind of fried on my PC, as I cannot get Eclipse to acknowledge the GLib datatypes. Could someone who is using Eclipse under Linux and has a working project with C/C++ indexeer send me his include path list? Rebuilding, recreating, all things tried a

Re: [Wireshark-dev] Problem with protocol in udp por 3800

2012-06-20 Thread Bill Meier
On 6/20/2012 10:47 AM, Pedro Fuentes Ortega wrote: Yes, the frames are displayed but but aren't dissected by the dissector. Does 'tshark -G decodes | grep "udp\.port"' show your dissector as being registered on udp.port 3800 ? If not, then maybe there's something wrong with your code to re

Re: [Wireshark-dev] Problem with protocol in udp por 3800

2012-06-20 Thread Pedro Fuentes Ortega
Yes, the frames are displayed but but aren't dissected by the dissector. 2012/6/20 Bill Meier > On 6/20/2012 9:52 AM, Pedro Fuentes Ortega wrote: > >> . >> Hello, >> This is the my first post and do not know if is the right way to question. >> In the company I work we used two proprietary protoc

Re: [Wireshark-dev] Problem with protocol in udp por 3800

2012-06-20 Thread Bill Meier
On 6/20/2012 9:52 AM, Pedro Fuentes Ortega wrote: . Hello, This is the my first post and do not know if is the right way to question. In the company I work we used two proprietary protocols to communicate, in a private network, diferent equipments. One protocol uses udp port 3500 and the other t

[Wireshark-dev] Problem with protocol in udp por 3800

2012-06-20 Thread Pedro Fuentes Ortega
. Hello, This is the my first post and do not know if is the right way to question. In the company I work we used two proprietary protocols to communicate, in a private network, diferent equipments. One protocol uses udp port 3500 and the other the udp 3800. I have tried to encode two dissector. T

Re: [Wireshark-dev] Problem in using a global variable in wireshark/gtk folder which is defined in epan/dissectors/ folder

2012-05-03 Thread Anders Broman
[mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Vishnu Bhatt Sent: den 3 maj 2012 12:08 To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Problem in using a global variable in wireshark/gtk folder which is defined in epan/dissectors/ folder Hello, Let me make myself

Re: [Wireshark-dev] Problem in using a global variable in wireshark/gtk folder which is defined in epan/dissectors/ folder

2012-05-03 Thread Vishnu Bhatt
Wireshark Subject: Re: [Wireshark-dev] Problem in using a global variable in wireshark/gtk folder which is defined in epan/dissectors/ folder On Wed, 02 May 2012 02:01:02 -0600 Vishnu Bhatt wrote > I am implementing a functionality where I want to scan all packets in a pcap > fil

Re: [Wireshark-dev] Problem in using a global variable in wireshark/gtk folder which is defined in epan/dissectors/ folder

2012-05-02 Thread Vishnu Bhatt
v-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Stephen Fisher Sent: Wednesday, May 02, 2012 11:14 PM To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Problem in using a global variable in wireshark/gtk folder which is defined in epan/dissectors/

Re: [Wireshark-dev] Problem in using a global variable in wireshark/gtk folder which is defined in epan/dissectors/ folder

2012-05-02 Thread Stephen Fisher
On Wed, 02 May 2012 02:01:02 -0600 Vishnu Bhatt wrote > I am implementing a functionality where I want to scan all packets in a pcap > file, and depending on a configuration, select only the relevant packets of a > call flow (basically create a filter and then apply it). I will be u

Re: [Wireshark-dev] Problem in using a global variable in wireshark/gtk folder which is defined in epan/dissectors/ folder

2012-05-02 Thread Vishnu Bhatt
, April 18, 2012 5:25 PM To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Problem in using a global variable in wireshark/gtk folder which is defined in epan/dissectors/ folder Hi, You should probably do what you are trying to do trough the tap interface instead, dissectors are

Re: [Wireshark-dev] Problem in using a global variable in wireshark/gtk folder which is defined in epan/dissectors/ folder

2012-04-18 Thread Anders Broman
, Regards Anders From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of Vishnu Bhatt Sent: den 18 april 2012 12:52 To: wireshark-dev@wireshark.org Subject: [Wireshark-dev] Problem in using a global variable in wireshark/gtk

[Wireshark-dev] Problem in using a global variable in wireshark/gtk folder which is defined in epan/dissectors/ folder

2012-04-18 Thread Vishnu Bhatt
Hello, I have a global variable in a .c file in the wireshark/epan/dissectors/ folder. How do I use it in another .c file in the wireshark/gtk/ folder? Every time I try using extern, I get an "undefined reference" error. I am able to use the same variable in another .c file in the epan/ folder.

  1   2   3   4   >