Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-7]: src/libexec/httpd Pull up following revision(s) (requested by...



details:   https://anonhg.NetBSD.org/src/rev/6517c7d0604a
branches:  netbsd-7
changeset: 799221:6517c7d0604a
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Sun Apr 19 04:44:03 2015 +0000

description:
Pull up following revision(s) (requested by mrg in ticket #705):
        libexec/httpd/CHANGES: revision 1.20
        libexec/httpd/bozohttpd.8: revision 1.49
        libexec/httpd/bozohttpd.c: revision 1.62-1.63
don't quote /.  it doesn't work.  this should fix PR#49765.
copyright maintenance, note shm@ in the manual and update the CHANGES
for recent changes.  call this 20150320.

diffstat:

 libexec/httpd/CHANGES     |   7 ++++++-
 libexec/httpd/bozohttpd.8 |  11 ++++++++---
 libexec/httpd/bozohttpd.c |   7 +++----
 3 files changed, 17 insertions(+), 8 deletions(-)

diffs (84 lines):

diff -r 5987929af0a6 -r 6517c7d0604a libexec/httpd/CHANGES
--- a/libexec/httpd/CHANGES     Sun Apr 19 04:37:17 2015 +0000
+++ b/libexec/httpd/CHANGES     Sun Apr 19 04:44:03 2015 +0000
@@ -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 rajeev_v_pillai%yahoo.com@localhost
diff -r 5987929af0a6 -r 6517c7d0604a libexec/httpd/bozohttpd.8
--- a/libexec/httpd/bozohttpd.8 Sun Apr 19 04:37:17 2015 +0000
+++ b/libexec/httpd/bozohttpd.8 Sun Apr 19 04:44:03 2015 +0000
@@ -1,8 +1,8 @@
-.\"    $NetBSD: bozohttpd.8,v 1.46.4.1 2015/01/12 10:02:29 martin Exp $
+.\"    $NetBSD: bozohttpd.8,v 1.46.4.2 2015/04/19 04:44:03 msaitoh 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 @@
 .Aq Mt wiz%NetBSD.org@localhost
 provided many fixes and enhancements for the man page
 .It
+.An Mateusz Kocielski
+.Aq Mt shm%NetBSD.org@localhost
+fixed memory leaks, information disclosure issues and added support
+for using CGI handlers with directory indexing.
+.It
 .An Arnaud Lacombe
 .Aq Mt alc%NetBSD.org@localhost
 provided some clean up for memory leaks
diff -r 5987929af0a6 -r 6517c7d0604a libexec/httpd/bozohttpd.c
--- a/libexec/httpd/bozohttpd.c Sun Apr 19 04:37:17 2015 +0000
+++ b/libexec/httpd/bozohttpd.c Sun Apr 19 04:44:03 2015 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: bozohttpd.c,v 1.56.2.2 2015/02/04 10:17:19 martin Exp $        */
+/*     $NetBSD: bozohttpd.c,v 1.56.2.3 2015/04/19 04:44:03 msaitoh 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"
@@ -878,7 +878,6 @@
                        goto encode_it;
                switch (*s) {
                case ':':
-               case '/':
                case '?':
                case '#':
                case '[':



Home | Main Index | Thread Index | Old Index