diff options
author | Igor Sysoev <igor@sysoev.ru> | 2010-06-07 13:38:39 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2010-06-07 13:38:39 +0000 |
commit | 1f5cf36a271e21e88e8fbc29dfd7828dc20b84eb (patch) | |
tree | d8ab49961591624445f7545a10c4f5d18c15a894 /src/http/modules/perl/nginx.pm | |
parent | 7935d4bff771c73a257bfd58f7301b3665d641ce (diff) | |
download | nginx-1f5cf36a271e21e88e8fbc29dfd7828dc20b84eb.tar.gz nginx-1f5cf36a271e21e88e8fbc29dfd7828dc20b84eb.zip |
202 Accepted status code
Diffstat (limited to 'src/http/modules/perl/nginx.pm')
-rw-r--r-- | src/http/modules/perl/nginx.pm | 2 |
1 files changed, 2 insertions, 0 deletions
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; |