Glenn Strauss
9211fb3d86
[mod_deflate] support Accept-Encoding: zstd
2021-01-12 18:29:20 -05:00
Glenn Strauss
b700a8ca09
[multiple] etag.[ch] -> http_etag.[ch]; better imp
...
more efficient implementation of HTTP ETag generation and comparison
modify dekhash() to take hash value to allow for incremental hashing
2020-12-25 14:41:16 -05:00
Glenn Strauss
655453a195
[core] inet_ntop_cache -> sock_addr_cache
...
* rename inet_ntop_cache.[ch] to sock_addr_cache.[ch]
* reimplement as separate caches for IPv4 and IPv6
2020-12-24 20:05:01 -05:00
Glenn Strauss
f8cc9fb915
[core] http_date.[ch] encapsulate HTTP-date parse
...
http_date.[ch] encapsulate HTTP-date parse/compare
(import from one of my development branches from 2015)
2020-12-24 16:13:20 -05:00
Glenn Strauss
f928f6d827
[core] sys-time.h - localtime_r,gmtime_r macros
...
sys-time.h - localtime_r,gmtime_r macros if needed
provide rudimentary localtime_r() and gmtime_r() if not present
(wraps localtime() and gmtime() funtions, but are not thread-safe since
they do not take a lock around access to localtime() and gmtime())
(import from one of my development branches from 2015)
2020-12-24 16:13:20 -05:00
Glenn Strauss
54922d61af
[mod_fastcgi] move src/fastcgi.h into src/compat/
2020-11-27 08:12:21 -05:00
Glenn Strauss
07622251b0
[build] option to use system-provided libxxhash
...
--with-xxhash
2020-10-29 19:30:45 -04:00
Glenn Strauss
a1f6d1322a
[build] mark dependencies on crypto lib for MD5()
...
(lighttpd base executable depends on crypto lib for rand functionality,
so the crypto library was already being loaded -- no missing symbols)
2020-10-26 13:53:07 -04:00
Glenn Strauss
0158c7f0fd
[build] remove svnversion from versionstamp rule
2020-10-21 20:56:18 -04:00
Glenn Strauss
c3a85c9bf5
[mod_wolfssl] standalone module
...
standalone module forked from mod_openssl
2020-10-11 12:19:26 -04:00
Glenn Strauss
5ec59999dd
[build] modify build, includes for xxHash v0.8.0
2020-10-11 12:19:26 -04:00
Glenn Strauss
156e1da2ae
[core] rename splaytree.[ch] to algo_splaytree.[ch]
2020-10-11 12:19:26 -04:00
Glenn Strauss
3ffb195532
[core] move djbhash(), dekhash() to algo_md.h
2020-10-11 12:19:26 -04:00
Glenn Strauss
6c8160e5a4
[core] rename md5.[ch] to algo_md5.[ch]
2020-10-11 12:19:26 -04:00
Glenn Strauss
044c8e80e5
[core] use djbhash in gw_backend to choose host
...
djbhash() is faster and more cache-friendly than is crc32c()
2020-10-11 12:19:26 -04:00
Glenn Strauss
70b1af0640
[core] link in ls-hpack (EXPERIMENTAL)
...
LiteSpeed ls-hpack v2.2.1
XXX: might be better to include this as a git submodule
but minor code changes were made here for portability:
- C99 flexible array members defined as a[] instead of a[0])
- pedantic compiler warnings (excess ';' and missing declarations)
- deletion of large tables from ls-hpack/huff-tables.h (code size)
2020-10-11 11:43:06 -04:00
Glenn Strauss
6eca864c5e
[core] h2.[ch] with stub funcs (incomplete)
...
(subsequently incrementally updated using git rebase)
huge props and many thank yous to writers of testing tools used while
developing HTTP/2 support in lighttpd:
h2spec - conformance testing tool for HTTP/2 implementation
https://github.com/summerwind/h2spec
h2load - HTTP/2 benchmarking tool
https://nghttp2.org/documentation/h2load-howto.html
curl - command line tool and library for transferring data with URLs
https://curl.haxx.se/
2020-10-11 11:43:02 -04:00
Glenn Strauss
4e4026703d
[core] reqpool.[ch] for (request_st *)
...
move request_init() request_reset() request_free() from connections.c
2020-10-03 09:05:38 -04:00
Glenn Strauss
6971c6c811
[core] move http_request_headers_process()
...
move http_request_headers_process() to request.[ch]
2020-10-03 09:05:38 -04:00
Glenn Strauss
e1bb579361
[core] disperse settings.h to appropriate headers
2020-08-10 20:04:57 -04:00
Glenn Strauss
bc5d4b3492
[mod_compress] remove mod_compress
2020-08-02 06:46:22 -04:00
Glenn Strauss
8d5e237c60
[mod_deflate] Brotli support
...
configuration option: ./configure --with-brotli
2020-08-02 06:46:22 -04:00
Glenn Strauss
fed2ecae19
[mod_authn_dbi] authn backend employing DBI
2020-07-16 00:29:43 -04:00
Glenn Strauss
2f5fc68b59
[build] fix typo in src/Makefile.am EXTRA_DIST
2020-07-10 19:27:42 -04:00
Glenn Strauss
e00deb5578
[mod_nss] NSS option for TLS ( fixes #1218 )
...
(experimental)
WARNING: EXPERIMENTAL code sketch; mod_nss is INCOMPLETE and UNTESTED
mod_nss supports most ssl.* config options supported by mod_openssl
x-ref:
"alternate ssl backend"
https://redmine.lighttpd.net/issues/1218
2020-07-08 22:51:32 -04:00
Glenn Strauss
1fc8a3e1f2
[core] sys-crypto-md.h w/ inline message digest fn
...
sys-crypto-md.h w/ inline message digest functions; shared code
2020-07-08 22:51:31 -04:00
Glenn Strauss
bf4054f8ec
[mod_gnutls] GnuTLS option for TLS ( fixes #109 )
...
(experimental)
mod_gnutls supports most ssl.* config options supported by mod_openssl
x-ref:
"GnuTLS support for the mod_ssl"
https://redmine.lighttpd.net/issues/109
2020-07-08 22:51:31 -04:00
Glenn Strauss
cb753ec5b5
[mod_mbedtls] mbedTLS option for TLS
...
(experimental)
mod_mbedtls supports most ssl.* config options supported by mod_openssl
thx Ward Willats for the initial discussion and attempt in the comments
https://redmine.lighttpd.net/boards/3/topics/7029
2020-07-08 22:51:31 -04:00
Glenn Strauss
9fdf24468d
[doc] src/t/README
2020-07-08 19:54:29 -04:00
Glenn Strauss
d013d0abd3
[core] http_request_parse_target()
...
http_request_parse_target() split from http_response_prepare()
2020-07-08 19:54:29 -04:00
Glenn Strauss
c8a1cba0c1
[tests] t/test_mod_userdir
...
create t/test_mod_userdir to replace sparse tests in tests/mod-userdir.t
remove tests/mod-userdir.t
2020-07-08 19:54:29 -04:00
Glenn Strauss
8b7e110973
[tests] stub out config funcs in test_mod_*
2020-07-08 19:54:29 -04:00
Glenn Strauss
5977ce2b4a
[core] isolate use of data_config, configfile.h
2020-07-08 18:08:52 -04:00
Glenn Strauss
0c64096555
[core] isolate data_config.c, vector.c
...
isolate data_config.c, vector.c to lighttpd executable, not modules
2020-02-24 11:15:32 -05:00
Glenn Strauss
62e97967ca
[core] prefer uint32_t to size_t in base.h
...
even 2 billion is way larger than even extreme operating values
expected for the members in base.h
include some structs directly in struct server, rather than by ptr
2020-02-24 11:15:32 -05:00
Glenn Strauss
5c3f439bcf
[build] PGSQL_CFLAGS with pkg-config for postgres ( #2965 )
...
build postgres modules with $(PGSQL_CFLAGS) in Makefile.am
x-ref:
"pg_config is deprecated to build postgres client applications"
https://redmine.lighttpd.net/issues/2965
2019-09-11 02:15:06 -04:00
Glenn Strauss
4ac239c401
[mod_maxminddb] MaxMind GeoIP2 support
2019-05-26 10:21:57 -04:00
Glenn Strauss
52c489837f
[build] detect FreeBSD elftc_copyfile()
2019-05-05 23:05:02 -04:00
Glenn Strauss
b9e2be50c9
[mod_auth] HTTP Auth Digest algorithm=SHA-256
...
(also support Digest algorithm=SHA-512-256 if library support present)
enable additional algorithms by configuring lighttpd.conf auth.require
with new optional keyword "algorithm" => "MD5|SHA-256"
default algorithm remains MD5 if "algorithm" not specified
Tested with: curl --digest -u "user:pass" ... (which supports SHA-256)
x-ref:
"HTTP Digest Access Authentication"
https://tools.ietf.org/html/rfc7616
2019-03-07 00:32:17 -05:00
Glenn Strauss
c8f9658536
[core] remove server.h
2019-02-04 03:01:33 -05:00
Glenn Strauss
4608ddec2f
[build] autotools: try mysqlclient.pc and mariadb.pc ( fixes #2925 )
...
(thx helmut)
x-ref:
"autotools cross build failure with lighttpd"
https://redmine.lighttpd.net/issues/2925
2019-01-19 17:42:12 -05:00
Glenn Strauss
f03e5e239d
[tests] t/test_keyvalue
...
create t/test_keyvalue to replace sparse tests in
tests/mod-redirect.t and tests/mod-rewrite.t
remove tests/mod-redirect.t and tests/mod-rewrite.t
2018-12-10 22:36:23 -05:00
Glenn Strauss
5a32d0f72a
[mod_access] t/test_mod_access
...
create t/test_mod_access to test mod_access basic logic
remove tests/mod-access.t
2018-12-03 23:03:04 -05:00
Glenn Strauss
8aad091613
[mod_evhost] t/test_mod_evhost
...
create t/test_mod_evhost to test mod_evhost basic logic
remove tests/mod-evhost.t
2018-12-03 23:03:04 -05:00
Glenn Strauss
b2a6239851
[mod_simple_vhost] t/test_mod_simple_vhost
...
create t/test_mod_simple_vhost to test mod_simple_vhost basic logic
remove tests/mod-simplevhost.t, which was not testing mod_simple_vhost
2018-12-03 23:03:04 -05:00
Glenn Strauss
368630d925
[TLS] sys-crypto.h abstraction
2018-09-26 01:08:24 -04:00
Glenn Strauss
2dbcfc9266
[core] inline status_counter routines
2018-09-23 18:01:58 -04:00
Glenn Strauss
002a4c524d
[core] array_get_int_ptr()
2018-09-23 18:01:58 -04:00
Glenn Strauss
66ff05db8f
[tests] t/test_array.c
...
(more tests should be added, but starting with something has benefits)
2018-09-23 18:01:58 -04:00
Glenn Strauss
df4812ec2e
[mod_authn_pam] mod_auth PAM support ( fixes #688 )
...
x-ref:
"auth via pam"
https://redmine.lighttpd.net/issues/688
2018-09-23 18:01:58 -04:00