Wireshark 的 Lua:Tvp.new_real() 不存在?
Lua for Wireshark 的文档声称 Tvp 类有一个 new_real() 方法。 然而,当我尝试在我的Lua脚本中使用它时,这个方法似乎不存在。 我正在使用适用于 Windows x64 的 Wireshark 1.3.5(最新开发版本)。 该方法是否已重命名?如果是的话,为了什么呢?对于这个特定问题有更好的支持论坛吗?
The documentation for Lua for Wireshark claims that the Tvp class has a new_real() method.
However, this method seems to not exist when I try to use it in my Lua script.
I'm using Wireshark 1.3.5 (latest dev version) for Windows x64.
Did the method get renamed? If so, to what? Is there a better support forum for this particular question?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
事实证明,该函数已移至 ByteArray 类中 - 您现在调用 ByteArray:tvb() 而不是 Tvb.real_new(byteArray)。
It turns out the function was moved into the ByteArray class -- you call ByteArray:tvb() rather than Tvb.real_new(byteArray) now.
通常,如果我不确定库中有哪些方法可用,我会使用pairs函数将它们打印出来。我想您可以使用相同的方法来解决您的问题。
Very commonly if I am not sure what methods are available in a library I use the
pairs
function to print them out. I guess you could use the same approach with your problem.