X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/7e3178245205a63f6922bda8bb51cd1ebdc34fa4..0d0253c93a64d2b5206e902c648e1e2c6bc5d510:/lib/event.c diff --git a/lib/event.c b/lib/event.c index 3618bf4..0e97596 100644 --- a/lib/event.c +++ b/lib/event.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2007 Richard Kettlewell + * Copyright (C) 2004, 2005, 2007, 2008 Richard Kettlewell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -930,6 +930,9 @@ struct ev_writer { /** @brief Tied reader or 0 */ ev_reader *reader; + + /** @brief Set when abandoned */ + int abandoned; }; /** @brief State structure for a buffered reader */ @@ -998,9 +1001,12 @@ static int writer_timebound_exceeded(ev_source *ev, void *u) { ev_writer *const w = u; - error(0, "abandoning writer %s because no writes within %ds", - w->what, w->timebound); - w->error = ETIMEDOUT; + if(!w->abandoned) { + w->abandoned = 1; + error(0, "abandoning writer '%s' because no writes within %ds", + w->what, w->timebound); + w->error = ETIMEDOUT; + } return writer_shutdown(ev, now, u); } @@ -1075,11 +1081,15 @@ static int ev_writer_write(struct sink *sk, const void *s, int n) { /* The new buffer contents will exceed the space bound. We assume that the * remote client has gone away and TCP hasn't noticed yet, or that it's got * hopelessly stuck. */ - error(0, "abandoning writer %s because buffer has reached %td bytes", - w->what, w->b.end - w->b.start); - ev_fd_disable(w->ev, ev_write, w->fd); - w->error = EPIPE; - return ev_timeout(w->ev, 0, 0, writer_shutdown, w); + if(!w->abandoned) { + w->abandoned = 1; + error(0, "abandoning writer '%s' because buffer has reached %td bytes", + w->what, w->b.end - w->b.start); + ev_fd_disable(w->ev, ev_write, w->fd); + w->error = EPIPE; + return ev_timeout(w->ev, 0, 0, writer_shutdown, w); + } else + return 0; } /* Make sure there is space */ buffer_space(&w->b, n); @@ -1224,7 +1234,7 @@ int ev_writer_flush(ev_writer *w) { /* buffered reader ************************************************************/ -/** @brief Shut down a reader* +/** @brief Shut down a reader * * This is the only path through which we cancel and close the file descriptor. * As with the writer case it is given timeout signature to allow it be