Commit c1f9de0f authored by Bill Stoddard's avatar Bill Stoddard
Browse files

Set the conn_rec->aborted flag when we detect a whacked connection on the

write path.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88978 13f79535-47bb-0310-9956-ffa450edef68
parent 4352b586
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -3239,6 +3239,10 @@ static apr_status_t core_output_filter(ap_filter_t *f, apr_bucket_brigade *b)
               "core_output_filter: writing data to the network");
            if (more)
                apr_brigade_destroy(more);
            if (APR_STATUS_IS_ECONNABORTED(rv) ||
                APR_STATUS_IS_ECONNRESET(rv)) {
                c->aborted = 1;
            }
            return rv;
        }