You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 22, 2023. It is now read-only.
Sending LINK and UNLINK requests to a node.js server causes the connection to be terminated due to an error in the way http_parser.c handles HTTP methods. Both LINK and UNLINK were defined as extensions to HTTP 1.0 and are included in the list of registered methods [1].
The lack of support for these two methods appears to be due to a larger issue with the way Node.js parses HTTP methods in general. See [2] for details and test cases.