From 1f5cf36a271e21e88e8fbc29dfd7828dc20b84eb Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 7 Jun 2010 13:38:39 +0000 Subject: 202 Accepted status code --- src/http/modules/perl/nginx.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/http/modules/perl/nginx.pm') diff --git a/src/http/modules/perl/nginx.pm b/src/http/modules/perl/nginx.pm index e259e9ebb..d581f4015 100644 --- a/src/http/modules/perl/nginx.pm +++ b/src/http/modules/perl/nginx.pm @@ -14,6 +14,7 @@ our @EXPORT = qw( HTTP_OK HTTP_CREATED + HTTP_ACCEPTED HTTP_NO_CONTENT HTTP_PARTIAL_CONTENT @@ -59,6 +60,7 @@ use constant DECLINED => -5; use constant HTTP_OK => 200; use constant HTTP_CREATED => 201; +use constant HTTP_ACCEPTED => 202; use constant HTTP_NO_CONTENT => 204; use constant HTTP_PARTIAL_CONTENT => 206; -- cgit