在Python中将IP地址转换为ulong

时间:2017-10-17 15:12:01

标签: python python-2.7 type-conversion boost-asio

需要使用Python将IP地址转换为unsigned long。 在C ++代码中,我使用

执行此操作
boost::asio::ip::address_v4::from_string("127.0.0.1").to_ulong()

Output: 2130706433

到目前为止,我已经能够将它转换为十六进制而不是ulong。

>>> socket.inet_aton('127.0.0.1')
'\x7f\x00\x00\x01'

请帮助我在Python中将IP转换为ulong?

0 个答案:

没有答案