X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=blobdiff_plain;f=python%2Fashd%2Fscgi.py;h=0bc7a573e133d8f27c5f67917f5029b13b3e7483;hp=a4342d02892016271a0157e7da40acd0cbf4053c;hb=81a0ca30bf866751d7a389ea322ddff2de64db1b;hpb=0fb57c32e8108895981d6b380c1b126a39042608 diff --git a/python/ashd/scgi.py b/python/ashd/scgi.py index a4342d0..0bc7a57 100644 --- a/python/ashd/scgi.py +++ b/python/ashd/scgi.py @@ -4,6 +4,10 @@ import threading class protoerr(Exception): pass +class closed(IOError): + def __init__(self): + super(closed, self).__init__("The client has closed the connection.") + def readns(sk): hln = 0 while True: @@ -88,9 +92,12 @@ def wrapwsgi(handler): def write(data): if not data: return - flushreq() - sk.write(data) - sk.flush() + try: + flushreq() + sk.write(data) + sk.flush() + except IOError: + raise closed() def startreq(status, headers, exc_info = None): if resp: