aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfgang Draxinger <Wolfgang.Draxinger@physik.uni-muenchen.de>2013-09-09 16:51:02 +0200
committerWolfgang Draxinger <Wolfgang.Draxinger@physik.uni-muenchen.de>2013-09-09 16:51:02 +0200
commit7f58ba9f11f131f165bd29575f93a50d9dc26c06 (patch)
tree5a680e68fdd4ed23701a70fc0ff77f8827060179
parent00108fa372bae2e77871ac78dc63691c3f9e9abe (diff)
downloadlitheweb-7f58ba9f11f131f165bd29575f93a50d9dc26c06.tar.gz
litheweb-7f58ba9f11f131f165bd29575f93a50d9dc26c06.tar.bz2
new HTTP status code string (422)
-rw-r--r--picohttp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/picohttp.c b/picohttp.c
index be22587..58973bc 100644
--- a/picohttp.c
+++ b/picohttp.c
@@ -110,6 +110,8 @@ static char const *picohttpStatusString(int code)
return "Not Found";
case 414:
return "Request URI Too Long";
+ case 422:
+ return "Unprocessable Entity";
case 500:
return "Internal Server Error";
case 501: