如何将http标头和http正文放在同一个响应消息中

时间:2018-05-28 12:47:02

标签: python http

我没有Http的经验,所以我不确定是什么造成的。 我的服务是用python编写的。下面的代码是Web服务器响应函数。 我使用wireshark来捕获,并发现从服务器发出两条消息。 如何在相同的响应消息中标题和正文。

代码:

     '''the bytes of sss is 1024'''
def start_burn(self):
    global allburnerdata
    burnPageNumer = round(len(allburnerdata) / 1024)
    self.send_response(200)
    sss = bytearray();
    sss.append(0xF1);
    sss.append(burnPageNumer);
    self.send_header("Content-type", "application/x-www-form-urlencoded")
    self.send_header("Content-Length", str(len(sss)))
    self.end_headers()
    self.wfile.write(sss) 
    return

0 个答案:

没有答案