python ctypes structure_将Python ctypes.Structure转换为str

我有一个结构(在这种情况下是一个Netlink消息头)我需要通过套接字发送到内核.我弄清楚的唯一方法是使用__reduce __().>>> class nlmsghdr(ctypes.Structure):...

我有一个结构(在这种情况下是一个Netlink消息头)我需要通过套接字发送到内核.我弄清楚的唯一方法是使用__reduce __().

>>> class nlmsghdr(ctypes.Structure):

... _fields_ = [('nlmsg_len', ctypes.c_int32),

... ('nlmsg_type', ctypes.c_int16),

... ('nlmsg_flags', ctypes.c_int16),

... ('nlmsg_seq', ctypes.c_int32),

... ('nlmsg_pid', ctypes.c_int32)]

...

>>>

>>> hdr = nlmsghdr(20, 22, 769, 1328884876, 0)

>>> hdr.__reduce__()[1][1][1]

'\x14\x00\x00\x00\x16\x00\x01\x03\x8c,5O\x00\x00\x00\x00'

>>> # socket.send(hdr.__reduce__()[1][1][1])

看起来__reduce__用于序列化(pickle)并且依赖于它总是以相同的方式运行似乎是一个错误.

肯定有更好的办法?

解决方法:

我同意使用__reduce __()感觉不对.

ctypes.string_at(ctypes.addressof(hdr), ctypes.sizeof(hdr))

应该以更透明的方式做到这一点.

标签:python,ctypes,structure

来源: https://codeday.me/bug/20190530/1184503.html

发布者:admin,转转请注明出处:http://www.yc00.com/web/1755047429a5232914.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信