python解析网络封包方法

在使用Python解析网络数据包时,使用网络字节序解析,参见下表。

字节序表

C语言的数据类型和Python的数据类型对照表请参见下表。

输入图片说明

接下来对封包与解包进行举例说明。

versiontypeidcontent
unsigned shortunsigned shortunsigned intunsigned int

封包

        package = ""   # 初始化字符串变量
        vertsion = 0x0001
        type =  0x0003
        id = 0x12345678
        content = 0xab12ef45
       
        package += struct.pack('!H', vertsion) 
        package += struct.pack('!H', type)
        package += struct.pack('!I', id)  
        package += struct.pack('!I', content)  

解包

         package = receive()  # 接收网络数据包
         vertsion = 0x0001
         type =  0x0003
         id = 0x12345678
         content = 0xab12ef45
       
         vertsion =  struct.unpack('!H', package[0:2]) 
         type = struct.unpack('!H', package[2:4])
         id = struct.unpack('!I', package[4:8]) 
         content = struct.unpack('!I', package[8:12])  

转载于:https://my.oschina.net/u/1863491/blog/809399

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值