Module Name: src
Committed By: mrg
Date: Fri Mar 20 19:54:53 UTC 2015
Modified Files:
src/libexec/httpd: CHANGES bozohttpd.8 bozohttpd.c
Log Message:
copyright maintenance, note shm@ in the manual and update the CHANGES
for recent changes. call this 20150320.
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/libexec/httpd/CHANGES
cvs rdiff -u -r1.48 -r1.49 src/libexec/httpd/bozohttpd.8
cvs rdiff -u -r1.62 -r1.63 src/libexec/httpd/bozohttpd.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/libexec/httpd/CHANGES
diff -u src/libexec/httpd/CHANGES:1.19 src/libexec/httpd/CHANGES:1.20
--- src/libexec/httpd/CHANGES:1.19 Thu Jul 17 10:21:51 2014
+++ src/libexec/httpd/CHANGES Fri Mar 20 19:54:53 2015
@@ -1,7 +1,12 @@
$eterna: CHANGES,v 1.78 2011/11/18 01:25:11 mrg Exp $
+changes in bozohttpd 20150320:
+ o fix redirection handling
+ o support transport stream (.ts) and video object (.vob) files
+ o directory listings show correct file sizes for large files
+
changes in bozohttpd 20140717:
- o properly handle SSL errors.
+ o properly handle SSL errors
changes in bozohttpd 20140708:
o fixes for virtual host support, from [email protected]
Index: src/libexec/httpd/bozohttpd.8
diff -u src/libexec/httpd/bozohttpd.8:1.48 src/libexec/httpd/bozohttpd.8:1.49
--- src/libexec/httpd/bozohttpd.8:1.48 Thu Dec 25 18:56:28 2014
+++ src/libexec/httpd/bozohttpd.8 Fri Mar 20 19:54:53 2015
@@ -1,8 +1,8 @@
-.\" $NetBSD: bozohttpd.8,v 1.48 2014/12/25 18:56:28 wiz Exp $
+.\" $NetBSD: bozohttpd.8,v 1.49 2015/03/20 19:54:53 mrg Exp $
.\"
.\" $eterna: bozohttpd.8,v 1.101 2011/11/18 01:25:11 mrg Exp $
.\"
-.\" Copyright (c) 1997-2014 Matthew R. Green
+.\" Copyright (c) 1997-2015 Matthew R. Green
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
@@ -26,7 +26,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.Dd December 25, 2014
+.Dd March 20, 2015
.Dt HTTPD 8
.Os
.Sh NAME
@@ -597,6 +597,11 @@ provided fixes for HTTP basic authorisat
.Aq Mt [email protected]
provided many fixes and enhancements for the man page
.It
+.An Mateusz Kocielski
+.Aq Mt [email protected]
+fixed memory leaks, information disclosure issues and added support
+for using CGI handlers with directory indexing.
+.It
.An Arnaud Lacombe
.Aq Mt [email protected]
provided some clean up for memory leaks
Index: src/libexec/httpd/bozohttpd.c
diff -u src/libexec/httpd/bozohttpd.c:1.62 src/libexec/httpd/bozohttpd.c:1.63
--- src/libexec/httpd/bozohttpd.c:1.62 Fri Mar 20 18:54:18 2015
+++ src/libexec/httpd/bozohttpd.c Fri Mar 20 19:54:53 2015
@@ -1,9 +1,9 @@
-/* $NetBSD: bozohttpd.c,v 1.62 2015/03/20 18:54:18 mrg Exp $ */
+/* $NetBSD: bozohttpd.c,v 1.63 2015/03/20 19:54:53 mrg Exp $ */
/* $eterna: bozohttpd.c,v 1.178 2011/11/18 09:21:15 mrg Exp $ */
/*
- * Copyright (c) 1997-2014 Matthew R. Green
+ * Copyright (c) 1997-2015 Matthew R. Green
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -109,7 +109,7 @@
#define INDEX_HTML "index.html"
#endif
#ifndef SERVER_SOFTWARE
-#define SERVER_SOFTWARE "bozohttpd/20141225"
+#define SERVER_SOFTWARE "bozohttpd/20150320"
#endif
#ifndef DIRECT_ACCESS_FILE
#define DIRECT_ACCESS_FILE ".bzdirect"