X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=blobdiff_plain;f=python%2Fashd-wsgi;h=042bf3feb8f1437bf0c898b6f0a1cdcd1c7b5cc6;hp=92a254a7c01babc2297b2ea085ac17e49f36de78;hb=81a0ca30bf866751d7a389ea322ddff2de64db1b;hpb=0fb57c32e8108895981d6b380c1b126a39042608 diff --git a/python/ashd-wsgi b/python/ashd-wsgi index 92a254a..042bf3f 100755 --- a/python/ashd-wsgi +++ b/python/ashd-wsgi @@ -36,6 +36,10 @@ else: sys.exit(1) handler = handlermod.application +class closed(IOError): + def __init__(self): + super(closed, self).__init__("The client has closed the connection.") + cwd = os.getcwd() def absolutify(path): if path[0] != '/': @@ -74,6 +78,7 @@ def unquoteurl(url): else: buf += c return buf + def dowsgi(req): env = {} env["wsgi.version"] = 1, 0 @@ -130,8 +135,11 @@ def dowsgi(req): if not data: return flushreq() - req.sk.write(data) - req.sk.flush() + try: + req.sk.write(data) + req.sk.flush() + except IOError: + raise closed() def startreq(status, headers, exc_info = None): if resp: