Hi all, We use some LUA files to decode our specifics frames. Some of or LUA have a lot of values (more than 60) in the function (dissector). Wireshark displays me an alert message before launching "Function at line 141 has more than 60 upvalues" here an example ok LUA function :
Is it possible to change this limitation ? (We use version 1.10.3) thx for your help Mickaël asked 16 Oct ‘15, 00:52 Mickaël edited 16 Oct ‘15, 06:29 |
One Answer:
The pb came from the number of local variable declared (>60) I solved it by declaring all my local variable into one array :
answered 16 Oct '15, 06:28 Mickaël |