Re: [Wireshark-dev] displaying more than 32 bits

2011-03-07 Thread Chris Maynard
Yosi Saggi writes: > I have a payload  that its size is 42 bits. I am getting it from the TVB in little Endian. > I have no problem displaying the whole payload as big endian with a guint 64bit variable: >   > guint32  f2_val1, f2_val2; > guint64 f2_val; >   > f2_val1 = tvb_get_letohl(tvb, *plen)

Re: [Wireshark-dev] displaying more than 32 bits

2011-03-06 Thread Yosi Saggi
v@wireshark.org Subject: Re: [Wireshark-dev] displaying more than 32 bits Am 06.03.2011 15:50, schrieb Yosi Saggi: > Hi everybody > > I have a payload that its size is 42 bits. I am getting it from the TVB > in little Endian. > > I have no problem displaying the whole payload a

Re: [Wireshark-dev] displaying more than 32 bits

2011-03-06 Thread Andreas
Am 06.03.2011 15:50, schrieb Yosi Saggi: Hi everybody I have a payload that its size is 42 bits. I am getting it from the TVB in little Endian. I have no problem displaying the whole payload as big endian with a guint 64bit variable: guint32 f2_val1, f2_val2; guint64 f2_val; f2_val1 = tvb_g

[Wireshark-dev] displaying more than 32 bits

2011-03-06 Thread Yosi Saggi
Hi everybody I have a payload that its size is 42 bits. I am getting it from the TVB in little Endian. I have no problem displaying the whole payload as big endian with a guint 64bit variable: guint32 f2_val1, f2_val2; guint64 f2_val; f2_val1 = tvb_get_letohl(tvb, *plen) f2_val2 = tvb