This repository was archived by the owner on May 4, 2018. It is now read-only.

Description
Is there any possibility that libuv would provide an interface to cancel write requests?
My understanding is that RFC 6429 suggests applications to close stalled connections to avoid DoS attacks, quote:
A clever application needs to detect such attacks with connections that are not making progress, and could close these connections.
However, it is impossible to close a connection with an on-going write request unless there is a way to cancel the request.
My understanding is that it is per design that libuv does not provide an interface for cancelling write requests (source), but it would be great if you could reconsider.