Re: [Wireshark-dev] LUA development highlighting bytefield display with LUA

2008-06-20 Thread Rowswell, Brent
n Sent: Friday, June 20, 2008 11:10 AM To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] LUA development highlighting bytefield display with LUA it turns the protocol name into lowercase so that'd be: myproto.stuff it should turn green if it is ok. what about the [Expressio

Re: [Wireshark-dev] LUA development highlighting bytefield display with LUA

2008-06-20 Thread Luis EG Ontanon
test > > And the filter I'm trying to use is MYPROTO.stuff correct? > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Luis EG > Ontanon > Sent: Friday, June 20, 2008 10:09 AM > To: Developer support list for Wireshark > Subjec

Re: [Wireshark-dev] LUA development highlighting bytefield display with LUA

2008-06-20 Thread Rowswell, Brent
And the filter I'm trying to use is MYPROTO.stuff correct? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Luis EG Ontanon Sent: Friday, June 20, 2008 10:09 AM To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] LUA development highlig

Re: [Wireshark-dev] LUA development highlighting bytefield display with LUA

2008-06-20 Thread Luis EG Ontanon
TECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Luis EG > Ontanon > Sent: Wednesday, June 18, 2008 10:32 AM > To: Developer support list for Wireshark > Subject: Re: [Wireshark-dev] LUA development highlighting bytefield > display with LUA > > mytree = subtree:add(tvb:

Re: [Wireshark-dev] LUA development highlighting bytefield display with LUA

2008-06-20 Thread Rowswell, Brent
PROTECTED] On Behalf Of Luis EG Ontanon Sent: Wednesday, June 18, 2008 10:32 AM To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] LUA development highlighting bytefield display with LUA mytree = subtree:add(tvb:range(0x1), "STUFF") should work or better if you defina a

Re: [Wireshark-dev] LUA development highlighting bytefield display with LUA

2008-06-18 Thread Luis EG Ontanon
and the second should highlight all but the first byte, > which it doesn't. > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Luis EG > Ontanon > Sent: Tuesday, June 17, 2008 7:47 AM > To: Developer support list for Wiresha

Re: [Wireshark-dev] LUA development highlighting bytefield display with LUA

2008-06-18 Thread Rowswell, Brent
7:47 AM To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] LUA development highlighting bytefield display with LUA Lua uses the very same API that dissectors use. For protocol tree items created with Lua (when they are given a tvbRange) the bytes in the hex dump pane get highlighted

Re: [Wireshark-dev] LUA development highlighting bytefield display with LUA

2008-06-17 Thread Luis EG Ontanon
Lua uses the very same API that dissectors use. For protocol tree items created with Lua (when they are given a tvbRange) the bytes in the hex dump pane get highlighted as with any other dissector. On Mon, Jun 16, 2008 at 3:37 PM, Rowswell, Brent <[EMAIL PROTECTED]> wrote: > Hey there, > > I was

[Wireshark-dev] LUA development highlighting bytefield display with LUA

2008-06-16 Thread Rowswell, Brent
Hey there, I was wondering if there was a way to make my LUA dissector highlight specific bytes in the bytefield display so that they stand out easily, such as the various portions of my header and attach these to the subtrees that explain what they are. I know something that does this is already