s. (To
know where it crashes can *really* help).
try to get tshark to crash, isolate the one packet on which the crash
occurred and see if it crashes "by itself".
On 3/5/07, Verriere Joseph <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I installed the last version: build 20973 and
modify the
> way exceptions are handled. This is not going to be fixed soon.
>
> And there's probably another one triggered by your code. For that I
> need two things from you the lua code and the capture file that
> triggered the crash.
>
>
> BR
> Luis
>
> On 2/2
Hello,
I'm trying to use LUA but I get a bug on Tshark when I launch my program.
I do this:
local numFrames = Field.new ("h248.ctx.cmd")
local extract_com = Listener.new()
function extract_com.packet(pinfo, Tvb)
local frames = { numFrames() }
end
There, without doing anything with fra
Hello,
I am using LUA with WireShark and when I try to dump a file, the time is always
lost.
For exemple:
I read a frame.
I memorize it in Save[i]
I memorize its time Time[i]=pinfo.abs_ts
And when I dump:
Dumper.dump (Extract, Time[i], PseudoHeader.none(), Save[i])
After that, in my new file, i
PROTECTED]
[mailto:[EMAIL PROTECTED]
Envoyé : mercredi 21 février 2007 10:02
À : Verriere Joseph
Objet : [Bug 1386] LUA + Megaco/H248
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1386
--- Comment #3 from [EMAIL PROTECTED] 2007-02-21 09:02 GMT ---
As per the ASN.1 Specification termin
e : [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
Envoyé : mercredi 21 février 2007 01:32
À : Verriere Joseph
Objet : [Bug 1386] LUA + Megaco/H248
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1386
[EMAIL PROTECTED] changed:
What|Removed
Hello,
I have a problem using LUA with h248.
I wrote a script trying to take only one communication out of a capture file.
The problem is when I want to have the terminationID, it doesn't work. He
doesn't find it. Here are the code lines:
terminationId = Field.new("h248.terminationID")
extract_