[Wireshark-dev] query regarding handoff function

2014-02-16 Thread Rahul Rohit
Hi, If the handoff function includes all those protocols to which the packets can be forwarded for dissection from the current protocol, why the handoff function for sctp does not contain the handle of NBAP protocol( As depending on the port value the packets from sctp can be forwarded to NBAP

Re: [Wireshark-dev] Unable to recognise DTLS packets

2014-02-16 Thread Tulika Bose
Hi I used the command 'tshark -r "dtls_pcap.pcapng" -R "dtls" > dtls.txt' , for redirecting the informations of the packets diplayed in the pcap file dtls_pcap.pcapng into the text file dtls.txt. But,although the pcap file contained dtls packets,displayed when the 'Decode As' option was manual

Re: [Wireshark-dev] Feature request: option to auto scroll IO graph when scrollbar thumb is at right end of scrollbar

2014-02-16 Thread Guy Harris
On Feb 15, 2014, at 11:56 PM, Reinhard Nissl wrote: > This feature is similar to how most IDEs behave in there output window. That behavior is hardly unique to IDEs, as per comments I added to the bug. The behavior in question makes sense to me. ___

Re: [Wireshark-dev] what is the meaning of function proto_register_subtree_array?

2014-02-16 Thread Guy Harris
On Feb 16, 2014, at 7:55 AM, Bill Meier wrote: > Essentially: proto_register_subtree() registers variables (usually named > ett_...) which are used to store state as to whether a particular sub-tree is > expanded or not in the "packet-details" pane in the GUI. ...so that, if you've opened up

Re: [Wireshark-dev] Feature request: option to auto scroll IO graph when scrollbar thumb is at right end of scrollbar

2014-02-16 Thread Reinhard Nissl
Hi, https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9775 Bye. -- Dipl.-Inform. (FH) Reinhard Nissl mailto:rni...@gmx.de ___ Sent via:Wireshark-dev mailing list Archives:http://www.wireshark.org/lists/wireshark-d

Re: [Wireshark-dev] Display filter frame.time_delta > 0.1returns incorrect results

2014-02-16 Thread Reinhard Nissl
Hi, https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9774 Bye. -- Dipl.-Inform. (FH) Reinhard Nissl mailto:rni...@gmx.de ___ Sent via:Wireshark-dev mailing list Archives:http://www.wireshark.org/lists/wireshark-d

Re: [Wireshark-dev] *** GMX Spamverdacht *** Re: Feature request: show context frames for frames matching display filter

2014-02-16 Thread Reinhard Nissl
Hi, Am 16.02.2014 16:57, schrieb Bill Meier: when investigating network issues with a display filter like frame.time_delta > 0.1 it would be useful to also see the previous 10 and next 5 frames of the matching frame for example, to get an idea what caused that delay. This feature is com

Re: [Wireshark-dev] Feature request: show context frames for frames matching display filter

2014-02-16 Thread Bill Meier
On 2/16/2014 2:38 AM, Reinhard Nissl wrote: Hi, when investigating network issues with a display filter like frame.time_delta > 0.1 it would be useful to also see the previous 10 and next 5 frames of the matching frame for example, to get an idea what caused that delay. This feature is c

Re: [Wireshark-dev] what is the meaning of function proto_register_subtree_array?

2014-02-16 Thread Bill Meier
On 2/16/2014 7:44 AM, 我想不无聊 wrote: when you register a protocol,you should do the following three steps, 1.proto_register_protocol(); 2.proto_register_field_array(); 3.proto_register_subtree_array() what does the third function proto_register_subtree_array do?why ?and do it for what reason?

[Wireshark-dev] what is the meaning of function proto_register_subtree_array?

2014-02-16 Thread ??????????
when you register a protocol,you should do the following three steps,1.proto_register_protocol(); 2.proto_register_field_array(); 3.proto_register_subtree_array() what does the third function proto_register_subtree_array do?why ?and do it for what reason?___