Re: [Wireshark-dev] ZBEE ZCL last modifies

2013-12-09 Thread Fabio Tarabelloni
Hi Alexis, I'd like to discuss to last modifies to the owner in order to illustrate/discuss how zcl file struct is made and the best way to add other/new cluster dissectors. Yes of course, I can patch the files, but I'm not sure I have the captures to test it. Fabio.

[Wireshark-dev] ZBEE ZCL last modifies

2013-12-08 Thread Fabio Tarabelloni
Hi, today I updated the wireshark trunk folder, and I saw that file packet-zbee-zcl.c is improved adding OTA UPGRADE dissector and others. This file structure was changed in order to simply the main zcl file. So, sub files were created in order to group specific clusters dissectors: -

[Wireshark-dev] New updated version info

2013-07-12 Thread Fabio Tarabelloni
Hi, I wrote in order to ask when current trunk wireshark version will be enable in *Development Release* download section. Thanks Fabio ___ Sent via:Wireshark-dev mailing list wireshark-dev@wireshark.org Archives:

[Wireshark-dev] How to customized FT_ABSOLUTE_TIME

2013-06-22 Thread Fabio Tarabelloni
Hi, I need more information about FT_ABSOLUTE_TIME. I have a 32-bits field matches a UTC time with a small peculiarity. I'd like to map the 0x value to Now string. Fabio. ___ Sent via:Wireshark-dev mailing list

Re: [Wireshark-dev] How to customized FT_ABSOLUTE_TIME

2013-06-22 Thread Fabio Tarabelloni
I can't use BASE_CUSTOM with FT_ABSOLUTE_TIME field because the compiler returns this error: Err Field 'UTC Time' has a 'strings' value but is of type FT_ABSOLUTE_TIME (which is not allowed to have strings) So I think I have to set a FT_UINT32 with BASE_CUSTOM and decode function but I don't

Re: [Wireshark-dev] How to customized FT_ABSOLUTE_TIME

2013-06-22 Thread Fabio Tarabelloni
thanks Evan for your suggestion. I solved with custom decode function. I used abs_time_secs_to_str (value, ABSOLUTE_TIME_LOCAL, TRUE) function where value is the uint32 seconds value. Fabio. ___ Sent via:Wireshark-dev

[Wireshark-dev] Timeline

2013-06-22 Thread Fabio Tarabelloni
Does Wireshark have a Timeline permits to display graphical packets history ? Fabio. ___ Sent via:Wireshark-dev mailing list wireshark-dev@wireshark.org Archives:http://www.wireshark.org/lists/wireshark-dev

[Wireshark-dev] ZigBee APS decription

2013-05-20 Thread Fabio Tarabelloni
Hi, I updated the repository and after the sources compile process wireshark does't decript the APS command. If I open the same capture with release software the problem is not present. (note: I compiled the current trunk sources in linux) Fabio.

[Wireshark-dev] plugin error during build

2013-02-16 Thread Fabio Tarabelloni
Hi, I'm working in order to improve a zigbee dissector. I created two new files(in epan/dissector folder): zbee-zcl-on-off.c and zbee-zcl-on-off.h. The .c file includes zbee-zcl.h file because the zbee-zcl-on-off.c needs 2 functions written in the zbee-zcl.c file. I built my wireshark working

[Wireshark-dev] zbee_zcl specific clusters dissector

2012-12-06 Thread Fabio Tarabelloni
Hi my name is Fabio. I'm a new in dev-mailing-list. I'd like to add the dissector for zbee zcl specific cluster like OnOff, Identify and others. I saw that there is already the zbee_zcl dissector, and this module manages the cross-cluster commands like (ReadAttribute, WriteAttribute ... ) but not