TCP/IP通信——python

2022-09-10 14:35:41

记一次python语言下的tcp/ip短链接通信。

根据要求,需将报文长度以4个字节的形式拼接在报文前。

当前通信是使用python中的socket包,在发送前需先将报文转为bytes形式发送,因此选用了将int型的报文长度转换为4个字节长度的bytes型数据进行传输的方法,如下。

int(length).to_bytes(length=4, byteorder='big', signed=True)

def socket_sendto(ip, port, xmlbw): # 此时的xmlbw是bytes格式
    # socket链接
    conn = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    conn.connect((ip, port))
    # 前4个字节保存长度
    length = len(xmlbw)+4
    # 长度由int转为byte形式方便发送,并以4字节填充,大端模式
    length_byte = int(length).to_bytes(length=4, byteorder='big', signed=True)
    conn.send(length_byte+xmlbw)
    conn.close()
  • 作者:PinkyZ
  • 原文链接:https://blog.csdn.net/qq_38622141/article/details/122321567
    更新时间:2022-09-10 14:35:41