# HG changeset patch # User Kim Alvefur # Date 1471097490 -7200 # Node ID f549587b8c06c9c0a91af0ccdbb0f42df9b616b6 # Parent e8efb5cf08773a62c5102d66b09c1f5a4360f881 net.http.codes: Add HTTP status code 451 Unavailable For Legal Reasons from RFC 7725 diff -r e8efb5cf0877 -r f549587b8c06 net/http/codes.lua --- a/net/http/codes.lua Sat Aug 13 16:10:17 2016 +0200 +++ b/net/http/codes.lua Sat Aug 13 16:11:30 2016 +0200 @@ -55,6 +55,7 @@ [428] = "Precondition Required"; [429] = "Too Many Requests"; [431] = "Request Header Fields Too Large"; + [451] = "Unavailable For Legal Reasons"; [500] = "Internal Server Error"; [501] = "Not Implemented";