Re: [Wireshark-dev] Use of variadic macros

2015-10-05 Thread Guy Harris
> On Oct 4, 2015, at 7:41 AM, Peter Wu wrote: > > On Thu, Oct 01, 2015 at 10:15:12AM -0700, Guy Harris wrote: >> >> On Oct 1, 2015, at 9:53 AM, Alexis La Goutte >> wrote: >> >>> Yes, there is a "warning" with GCC from some month... >>> >>> ../../epan/proto.h:2740:54: warning: anonymous vari

Re: [Wireshark-dev] FILETIME to nstime_t conversions gives a warning

2015-10-05 Thread Guy Harris
On Oct 4, 2015, at 6:09 AM, Peter Wu wrote: > I am getting these compile warnings using Clang 3.7.0: > >wsutil/nstime.c:235:25: warning: shifting a negative signed value is > undefined [-Wshift-negative-value] >time_t l_time_min = TIME_T_MIN; >^~

[Wireshark-dev] Master-2.0 update

2015-10-05 Thread Gerald Combs
We now have a master-2.0 branch, created from gd52322e. Any commits after that which should go into 2.0 must be cherry-picked. The buildbot for the new branch is up and running at https://buildbot.wireshark.org/wireshark-2.0/waterfall ___

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

2015-10-05 Thread 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 the second AMQP frame, it (obviously) overwrites

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

2015-10-05 Thread Pascal Quantin
2015-10-06 8:07 GMT+02:00 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() f

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