Python的SIGPIPE信号

Have you ever seen a socket.error: [Errno 32] Broken pipe message when running a Python Web server and wondered what that means?

The rule is that when a process tries to write to a socket that has already received an RST packet, the SIGPIPE signal is sent to that process which causes the Broken pipe socket.error exception.

Here are two scenarios that you can try that cause SIGPIPE signal to be fired.

1. Server may send an RST packet to a client to abort the socket connection but the client ignores the packet and continues to write to the socket.

To test that behavior. install Cynic, run it

CODE:

01.$ cynic
02.INFO     [2012-06-08 05:06:37,040] server: Starting 'HTTPHtmlResponse'   on port 2000
03.INFO     [2012-06-08 05:06:37,040] server: Starting 'HTTPJsonResponse'   on port 2001
04.INFO     [2012-06-08 05:06:37,040] server: Starting 'HTTPNoBodyResponse' on port 2002
05.INFO     [2012-06-08 05:06:37,040] server: Starting 'HTTPSlowResponse'   on port 2003
06.INFO     [2012-06-08 05:06:37,040] server: Starting 'RSTResponse'        on port 2020
07.INFO     [2012-06-08 05:06:37,040] server: Starting 'RandomDataResponse' on port 2021
08.INFO     [2012-06-08 05:06:37,040] server: Starting 'NoResponse'         on port 2022
09.INFO     [2012-06-08 05:06:37,041] server: Starting 'LogRecordHandler'   on port /tmp/_cynic.sockand then run the client1.py:

CODE:

01.import socket
02.
03.# connect to Cynic's RSTResponse service on port 2020
04.s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
05.s.connect(('', 2020))
06.
07.# first read gets an RST packet
08.try:
09.s.recv(1024)
10.except socket.error as e:
11.print e
12.print
13.
14.# write after getting the RST causes SIGPIPE signal
15.# to be sent to this process which causes a socket.error
16.# exception
17.s.send('hello')

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/301743/viewspace-733074/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/301743/viewspace-733074/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值