From e5888a1ffdae813d7575f5fb02275c6bb07e5199 Mon Sep 17 00:00:00 2001 From: Taru Karttunen Date: Wed, 30 Mar 2011 15:46:40 +0300 Subject: Import sources from 2011-03-30 iso image --- sys/src/libhttpd/unallowed.c | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 sys/src/libhttpd/unallowed.c (limited to 'sys/src/libhttpd/unallowed.c') diff --git a/sys/src/libhttpd/unallowed.c b/sys/src/libhttpd/unallowed.c new file mode 100755 index 000000000..ff50856f1 --- /dev/null +++ b/sys/src/libhttpd/unallowed.c @@ -0,0 +1,35 @@ +#include +#include +#include +#include + +int +hunallowed(HConnect *c, char *allowed) +{ + Hio *hout; + int n; + + n = snprint(c->xferbuf, HBufSize, "Method Not Allowed\r\n" + "

Method Not Allowed

\r\n" + "You can't %s on here.

\r\n", c->req.meth, c->req.uri); + + hout = &c->hout; + hprint(hout, "%s 405 Method Not Allowed\r\n", hversion); + hprint(hout, "Date: %D\r\n", time(nil)); + hprint(hout, "Server: Plan9\r\n"); + hprint(hout, "Content-Type: text/html\r\n"); + hprint(hout, "Allow: %s\r\n", allowed); + hprint(hout, "Content-Length: %d\r\n", n); + if(c->head.closeit) + hprint(hout, "Connection: close\r\n"); + else if(!http11(c)) + hprint(hout, "Connection: Keep-Alive\r\n"); + hprint(hout, "\r\n"); + + if(strcmp(c->req.meth, "HEAD") != 0) + hwrite(hout, c->xferbuf, n); + + if(c->replog) + c->replog(c, "Reply: 405 Method Not Allowed\nReason: Method Not Allowed\n"); + return hflush(hout); +} -- cgit v1.2.3