[Wireshark-dev] Need help !! "tshark : Child capture process died: Segmentation violation" ‏

2008-07-16 Thread yenan
Hi, folks: Really need help here! I am running tshark on ppc hardware(somebody get it compiled using crosscomplier), when I try to run tshark, it will crash right the way: tshark: Child capture process died: Segmentation violation0 packets capturedI searched through the we b, this kind of error

[Wireshark-dev] Need help! How to set plugin library as a relative path instead of absolute path?

2008-06-15 Thread yenan
Hi, I have asked a similar question but have not solved yet. So, I am truing to simplify my question here, wish some one can give me some hints. I am willing to set plugin library as a relative path instead of absolute path, I already searched the configure options, there is a --with-plugin[

Re: [Wireshark-dev] Need help on wireshark plugin library path setting and open (on hardware not pc

2008-06-12 Thread yenan
the '-help' option. That shows all the options you can pass> to the script to match the build to your target.> > Thanx,> Jaap> > yenan wrote:> > Hi, folks, need help here!> > > > I am tasked to integrate tshark to hardware, therefore we can capture

[Wireshark-dev] Need help on wireshark plugin library path setting and open (on hardware not pc box)

2008-06-12 Thread yenan
Hi, folks, need help here! I am tasked to integrate tshark to hardware, therefore we can capture and debug packets internally. We build tshark as a 3rd party tool through image combined with other tools, when installing this image to hardware, a path like $IMAGE will add in front of wireshar

[Wireshark-dev] "tshark: This version of TShark was not built with support for capturing packets"

2008-06-09 Thread yenan
Hi, folks, need help here!! I am trying to build only tshakr in Linux, so I used --disable-wireshark , the build passed, but finally I end up with follow error when I tried to execute tshark: tshark: This version of TShark was not built with support for capturing packets Is there any option I

Re: [Wireshark-dev] Is there a way to change the path (location) of wireshark PLUGINs?

2008-04-09 Thread yenan
> Date: Wed, 9 Apr 2008 18:26:02 -0700> From: [EMAIL PROTECTED]> To: > wireshark-dev@wireshark.org> Subject: Re: [Wireshark-dev] Is there a way to > change the path (location) of wireshark PLUGINs?> > yenan wrote:> > I found > an option in configure file:> >

Re: [Wireshark-dev] Is there a way to change the path (location) of wireshark PLUGINs?

2008-04-09 Thread yenan
pported configuration> you'll have to figure this out yourself I'm afraid.> > Thanx,> Jaap> > yenan wrote:> > Thanks Jaap> > Is it possible I modify top level makefile to include the DIRECTORY(say > > DIRECTORY A) I wish the new plugin to be stored,

Re: [Wireshark-dev] Is there a way to change the path (location) of wireshark PLUGINs?

2008-04-08 Thread yenan
hark-dev] Is there a way to change the path (location) of wireshark PLUGINs?> > Hi,> > I haven't looked into the details. Since this is not a supported configuration> you'll have to figure this out yourself I'm afraid.> > Thanx,> Jaap> > yenan wrote:>

Re: [Wireshark-dev] Is there a way to change the path (location) of wireshark PLUGINs?

2008-04-08 Thread yenan
ou're > willing to rework the various makefiles you're stuck with the> place they > are.> > Thanx,> Jaap> > > yenan wrote:> > Hi, folks:> > > > Is there anyway I > can develop wireshark plugin separately and pickup the > > plugin when >

[Wireshark-dev] Is there a way to change the path (location) of wireshark PLUGINs?

2008-04-08 Thread yenan
Hi, folks: Is there anyway I can develop wireshark plugin separately and pickup the plugin when build? e.g., is that possible to store plugin outside of wireshark folder (outside of wireshark/plugin) , and pickup the plguin in a different directory(say in c:\plugin)? Thank you very much! A

Re: [Wireshark-dev] Is there anyway to control what will be display in the "protocol column"?

2008-03-17 Thread yenan
); This will keep Protocol column without overwirte, what about others? such as INFO ,Source and Dest. Columns? I tried col_set_writable(pinfo->src, FALSE)etc, none of them worked, and I searched them from internet , seems there is very little information! Thank you very much > yenan

[Wireshark-dev] Is there anyway to control what will be display in the "protocol column"?

2008-03-14 Thread yenan
Hi guys I am currently trying to write a plugin dissector for a kind of dedicated packet which will encapsulate some other type of packets(IP, ARP...etc), I do not want to display the encapsulated packet's protocol in the "protocol column", I will rather to keep the lower layer one's protoco

Re: [Wireshark-dev] [HELP]How to dissect a packet without a protocol? It can only be digged out by i

2008-02-21 Thread yenan
Thank you very very much, Holger!! Using heur_dissector seems I have to dissect whold frame including the mac address, even the header is in prefect Ethernet II frame format? Regards Nan Date: Thu, 21 Feb 2008 09:15:26 +0100From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: [Wireshark-d

Re: [Wireshark-dev] How to only output certain selected segment of a packet?

2008-02-13 Thread yenan
> Date: Wed, 13 Feb 2008 19:44:35 -0700> From: [EMAIL PROTECTED]> To: > wireshark-dev@wireshark.org> Subject: Re: [Wireshark-dev] How to only output > certain selected segment of a packet?> > On Thu, Feb 14, 2008 at 12:09:08AM > +, yenan wrote:> > > I

[Wireshark-dev] How to only output certain selected segment of a packet?

2008-02-13 Thread yenan
Hi folks:I am trying to output a paclet with a index field whihc is 20-bits long , If I use "guint32" to define the variable for "INDEX" field, and have the index value as "12345678", how can I chop the "678" off, and display only "12345" to the screen? Hope I explain the question clearly, t

Re: [Wireshark-dev] [Help]Where I can find the wireshark recourses?

2008-02-05 Thread yenan
Really helpful!!Thank you> Date: Tue, 5 Feb 2008 18:11:24 +0100> From: [EMAIL PROTECTED]> To: wireshark-dev@wireshark.org> Subject: Re: [Wireshark-dev] [Help]Where I can find the wireshark recourses?> > yenan wrote:> > Hi folks, I am brand new to wireshark and a

[Wireshark-dev] [Help]Where I can find the wireshark recourses?

2008-02-05 Thread yenan
Hi folks, I am brand new to wireshark and attracted by this amazing software, now I am trying to write a plugin dissector... I have read developer's guide and readme.developer...but still kinda very confusing. Would you guys kindly tell me where I can find a detail example (with expla