Re: [Wireshark-dev] help me for plugin.

2007-08-23 Thread Jaap Keuter
Hi, Add its name to the DISSECTOR_SUPPORT_SRC symbol in Makefile.common. Thanx, Jaap Amit Paliwal wrote: > > i am writing a plugin which contains *packet-xxx.c *file and i am > writing one *packet-xxx-ie.h *file which contains some relevent > prototype declarations of function used and i am

Re: [Wireshark-dev] help me for plugin.

2007-08-23 Thread Abhik Sarkar
Also, this new item: http://www.wireshark.org/news/20070702b.html provides a link to an article which tells you how to develop a plugin dissector from scratch. It might help. On 8/23/07, Abhik Sarkar <[EMAIL PROTECTED]> wrote: > I think it should be in Makefile.common. If you have a look at the >

Re: [Wireshark-dev] help me for plugin.

2007-08-23 Thread Abhik Sarkar
I think it should be in Makefile.common. If you have a look at the DOCSIS plugin it has lot of .c and .h files. Hope this helps Abhik On 8/23/07, Amit Paliwal <[EMAIL PROTECTED]> wrote: > > i am writing a plugin which contains packet-xxx.c file and i am writing one > packet-xxx-ie.h file which co

[Wireshark-dev] help me for plugin.

2007-08-23 Thread Amit Paliwal
i am writing a plugin which contains packet-xxx.c file and i am writing one packet-xxx-ie.h file which contains some relevent prototype declarations of function used and i am defining these functions in packet-xxx-ie.c. i have included packet-xxx-ie.h in packet-xxx.c file because of which pac