add some missing changes and bump the version.

This commit is contained in:
mrg 2024-01-26 23:19:44 +00:00
parent d65853d276
commit ab3f0bd6b1
3 changed files with 20 additions and 10 deletions

View File

@ -1,4 +1,12 @@
$NetBSD: CHANGES,v 1.54 2022/11/02 20:38:21 andvar Exp $
$NetBSD: CHANGES,v 1.55 2024/01/26 23:19:44 mrg Exp $
changes in bozohttpd 20240126:
o add some more default mime types.
o fix memory leaks. from shm.
o fix reading 2 bytes beyond '%', possibly not mapped. from shm.
o support openssl 3. from christos.
o add -q option to not log. from martin.
o fix default return value of bozo_set_defaults(), PR#54785.
changes in bozohttpd 20220104:
o remove obsolete .bzdirect handling.

View File

@ -1,8 +1,8 @@
.\" $NetBSD: bozohttpd.8,v 1.93 2023/06/07 20:22:22 mrg Exp $
.\" $NetBSD: bozohttpd.8,v 1.94 2024/01/26 23:19:44 mrg Exp $
.\"
.\" $eterna: bozohttpd.8,v 1.101 2011/11/18 01:25:11 mrg Exp $
.\"
.\" Copyright (c) 1997-2023 Matthew R. Green
.\" Copyright (c) 1997-2024 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 Sep 12, 2023
.Dd Jan 26, 2024
.Dt BOZOHTTPD 8
.Os
.Sh NAME
@ -670,7 +670,7 @@ version 20230602.
.Nm
was written by
.An Matthew R. Green
.Aq Mt mrg@eterna.com.au .
.Aq Mt mrg@eterna23.net .
.Pp
The large list of contributors includes:
.Bl -dash
@ -805,7 +805,7 @@ provided several clean up fixes, and man page updates
provided various fixes
.It
.An Tyler Retzlaff
.Aq Mt rtr@eterna.com.au
.Aq Mt rtr@eterna23.net
provided SSL support, cgi-bin fixes and much other random other stuff
.It
.An rudolf
@ -860,7 +860,9 @@ There are probably others I have forgotten (let me know if you care)
Please send all updates to
.Nm
to
.Aq Mt mrg@eterna.com.au
.Aq Mt mrg@eterna23.net
or
.Aq Mt netbsd-bugs@NetBSD.org
for inclusion in future releases.
.Sh BUGS
.Nm

View File

@ -1,9 +1,9 @@
/* $NetBSD: bozohttpd.c,v 1.145 2023/09/20 07:13:35 shm Exp $ */
/* $NetBSD: bozohttpd.c,v 1.146 2024/01/26 23:19:44 mrg Exp $ */
/* $eterna: bozohttpd.c,v 1.178 2011/11/18 09:21:15 mrg Exp $ */
/*
* Copyright (c) 1997-2023 Matthew R. Green
* Copyright (c) 1997-2024 Matthew R. Green
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -108,7 +108,7 @@
#define INDEX_HTML "index.html"
#endif
#ifndef SERVER_SOFTWARE
#define SERVER_SOFTWARE "bozohttpd/20230602"
#define SERVER_SOFTWARE "bozohttpd/20240126"
#endif
#ifndef PUBLIC_HTML
#define PUBLIC_HTML "public_html"