Module Name: src
Committed By: kim
Date: Tue Jan 4 06:08:14 UTC 2022
Modified Files:
src/libexec/httpd: CHANGES bozohttpd.8 bozohttpd.c bozohttpd.h
Log Message:
bozohttpd: remove obsolete .bzdirect handling
OK mrg@
To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 src/libexec/httpd/CHANGES
cvs rdiff -u -r1.89 -r1.90 src/libexec/httpd/bozohttpd.8
cvs rdiff -u -r1.137 -r1.138 src/libexec/httpd/bozohttpd.c
cvs rdiff -u -r1.70 -r1.71 src/libexec/httpd/bozohttpd.h
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.52 src/libexec/httpd/CHANGES:1.53
--- src/libexec/httpd/CHANGES:1.52 Fri Sep 3 21:54:59 2021
+++ src/libexec/httpd/CHANGES Tue Jan 4 06:08:14 2022
@@ -1,4 +1,7 @@
-$NetBSD: CHANGES,v 1.52 2021/09/03 21:54:59 andvar Exp $
+$NetBSD: CHANGES,v 1.53 2022/01/04 06:08:14 kim Exp $
+
+changes in bozohttpd 20220104:
+ o remove obsolete .bzdirect handling.
changes in bozohttpd 20210824:
o new "-m tlsversion" option to set the minimum TLS version
Index: src/libexec/httpd/bozohttpd.8
diff -u src/libexec/httpd/bozohttpd.8:1.89 src/libexec/httpd/bozohttpd.8:1.90
--- src/libexec/httpd/bozohttpd.8:1.89 Tue Aug 24 09:47:36 2021
+++ src/libexec/httpd/bozohttpd.8 Tue Jan 4 06:08:14 2022
@@ -1,4 +1,4 @@
-.\" $NetBSD: bozohttpd.8,v 1.89 2021/08/24 09:47:36 mrg Exp $
+.\" $NetBSD: bozohttpd.8,v 1.90 2022/01/04 06:08:14 kim Exp $
.\"
.\" $eterna: bozohttpd.8,v 1.101 2011/11/18 01:25:11 mrg Exp $
.\"
@@ -532,14 +532,9 @@ the client did not make a ranged request
.Nm
looks for a couple of special files in directories that allow certain features
to be provided on a per-directory basis.
-In addition to the
+The
.Pa .htpasswd
-used by HTTP basic authorization,
-if a
-.Pa .bzdirect
-file is found (contents are irrelevant)
-.Nm
-will allow direct access.
+file is used by HTTP basic authorization.
If a
.Pa .bzredirect
symbolic link is found,
@@ -659,7 +654,7 @@ The focus has always been simplicity and
and regular code audits.
This manual documents
.Nm
-version 20210824.
+version 20220104.
.Sh AUTHORS
.An -nosplit
.Nm
@@ -826,6 +821,12 @@ enhanced cgi-bin support
.Aq Mt [email protected]
implemented If-Modified-Since support
.It
+.An Kimmo Suominen
+.Aq Mt [email protected]
+removed obsolete
+.Pa .bzdirect
+handling
+.It
.An ISIHARA Takanori
.Aq Mt [email protected]
provided a man page fix
Index: src/libexec/httpd/bozohttpd.c
diff -u src/libexec/httpd/bozohttpd.c:1.137 src/libexec/httpd/bozohttpd.c:1.138
--- src/libexec/httpd/bozohttpd.c:1.137 Fri Dec 10 20:36:02 2021
+++ src/libexec/httpd/bozohttpd.c Tue Jan 4 06:08:14 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: bozohttpd.c,v 1.137 2021/12/10 20:36:02 andvar Exp $ */
+/* $NetBSD: bozohttpd.c,v 1.138 2022/01/04 06:08:14 kim Exp $ */
/* $eterna: bozohttpd.c,v 1.178 2011/11/18 09:21:15 mrg Exp $ */
@@ -108,7 +108,7 @@
#define INDEX_HTML "index.html"
#endif
#ifndef SERVER_SOFTWARE
-#define SERVER_SOFTWARE "bozohttpd/20210824"
+#define SERVER_SOFTWARE "bozohttpd/20220104"
#endif
#ifndef PUBLIC_HTML
#define PUBLIC_HTML "public_html"
@@ -177,7 +177,6 @@ struct {
const char *file;
const char *name;
} specials[] = {
- { DIRECT_ACCESS_FILE, "rejected direct access request" },
{ REDIRECT_FILE, "rejected redirect request" },
{ ABSREDIRECT_FILE, "rejected absredirect request" },
{ REMAP_FILE, "rejected remap request" },
Index: src/libexec/httpd/bozohttpd.h
diff -u src/libexec/httpd/bozohttpd.h:1.70 src/libexec/httpd/bozohttpd.h:1.71
--- src/libexec/httpd/bozohttpd.h:1.70 Tue Aug 24 09:47:36 2021
+++ src/libexec/httpd/bozohttpd.h Tue Jan 4 06:08:14 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: bozohttpd.h,v 1.70 2021/08/24 09:47:36 mrg Exp $ */
+/* $NetBSD: bozohttpd.h,v 1.71 2022/01/04 06:08:14 kim Exp $ */
/* $eterna: bozohttpd.h,v 1.39 2011/11/18 09:21:15 mrg Exp $ */
@@ -267,9 +267,6 @@ void debug__(bozohttpd_t *, int, const c
* bozo_check_special_files()
*/
-#ifndef DIRECT_ACCESS_FILE
-#define DIRECT_ACCESS_FILE ".bzdirect"
-#endif
#ifndef REDIRECT_FILE
#define REDIRECT_FILE ".bzredirect"
#endif