ctypes 并通过引用传递 a 到函数

发布于 2024-12-06 07:30:46 字数 665 浏览 0 评论 0原文

我正在尝试使用 ctypes 在 python3 中使用 libpcap。

给定 python 中 C 中的以下函数

pcap_lookupnet(dev, &net, &mask, errbuf)

,我有以下内容

pcap_lookupnet = pcap.pcap_lookupnet

mask = ctypes.c_uint32
net = ctypes.c_int32

if(pcap_lookupnet(dev,net,mask,errbuf) == -1):
print("Error could not get netmask for device {0}".format(errbuf))
sys.exit(0)

,我得到的错误是

  File "./libpcap.py", line 63, in <module>
 if(pcap_lookupnet(dev,net,mask,errbuf) == -1):
ctypes.ArgumentError: argument 2: <class 'TypeError'>: Don't know how to convert parameter 2

如何处理 &blah 值?

I'm trying to use libpcap in python3 using ctypes.

given the following function in C

pcap_lookupnet(dev, &net, &mask, errbuf)

in python I have the following

pcap_lookupnet = pcap.pcap_lookupnet

mask = ctypes.c_uint32
net = ctypes.c_int32

if(pcap_lookupnet(dev,net,mask,errbuf) == -1):
print("Error could not get netmask for device {0}".format(errbuf))
sys.exit(0)

and the error i get is

  File "./libpcap.py", line 63, in <module>
 if(pcap_lookupnet(dev,net,mask,errbuf) == -1):
ctypes.ArgumentError: argument 2: <class 'TypeError'>: Don't know how to convert parameter 2

how do you deal with &blah values ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

北城挽邺 2024-12-13 07:30:46

您需要为netmask创建实例,并使用byref来传递它们。

mask = ctypes.c_uint32()
net = ctypes.c_int32()
pcap_lookupnet(dev, ctypes.byref(net), ctypes.byref(mask), errbuf)

You need to create instances for net and mask, and use byref to pass them.

mask = ctypes.c_uint32()
net = ctypes.c_int32()
pcap_lookupnet(dev, ctypes.byref(net), ctypes.byref(mask), errbuf)
哽咽笑 2024-12-13 07:30:46

ctypes.c_uint32 是一个类型。您需要一个实例:

mask = ctypes.c_uint32()
net = ctypes.c_int32()

然后使用ctypes.byref传递:

pcap_lookupnet(dev,ctypes.byref(mask),ctypes.byref(net),errbuf)

您可以使用mask.value检索值。

ctypes.c_uint32 is a type. You need an instance:

mask = ctypes.c_uint32()
net = ctypes.c_int32()

Then pass using ctypes.byref:

pcap_lookupnet(dev,ctypes.byref(mask),ctypes.byref(net),errbuf)

You can retrieve the value using mask.value.

温柔戏命师 2024-12-13 07:30:46

您可能需要使用 ctypes.pointer,如下所示:

pcap_lookupnet(dev, ctypes.pointer(net), ctypes.pointer(mask), errbuf)

请参阅 指针 了解更多信息。

我假设您也为其他参数创建了 ctypes 代理。例如,如果 dev 需要一个字符串,则不能简单地传入 Python 字符串;您需要创建一个 ctypes_wchar_p 或类似的东西。

You probably need to use ctypes.pointer, like this:

pcap_lookupnet(dev, ctypes.pointer(net), ctypes.pointer(mask), errbuf)

See the ctypes tutorial section on pointers for more information.

I'm assuming you've created ctypes proxies for the other arguments as well. If dev requires a string, for example, you can't simply pass in a Python string; you need to create a ctypes_wchar_p or something along those lines.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文