diff options
author | Graham Leggett <minfrin@apache.org> | 2023-04-25 19:35:08 +0200 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2023-04-25 19:35:08 +0200 |
commit | 3e638ff2836e836eba2613338c8102da8d62a976 (patch) | |
tree | f47c4cae0401ee49a6d2ae9a9c7d4154614484cb /include/ap_mmn.h | |
parent | * Rephrase comment [skip ci] (diff) | |
download | apache2-3e638ff2836e836eba2613338c8102da8d62a976.tar.xz apache2-3e638ff2836e836eba2613338c8102da8d62a976.zip |
core: Add the token_checker hook, that allows authentication to take
place using mechanisms other than username/password, such as bearer
tokens.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1909409 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_mmn.h')
-rw-r--r-- | include/ap_mmn.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/ap_mmn.h b/include/ap_mmn.h index 613ebfe10f..7b6e524aae 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -715,6 +715,8 @@ * 20211221.10 (2.5.1-dev) Add ap_proxy_canonenc_ex * 20211221.11 (2.5.1-dev) Add AP_CTIME_OPTION_GMTOFF to util_time.h * 20211221.12 (2.5.1-dev) Add cmd_parms->regex + * 20211221.13 (2.5.1-dev) Add hook token_checker to check for authorization other + * than username / password. Add autht_provider structure. */ #define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */ @@ -722,7 +724,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20211221 #endif -#define MODULE_MAGIC_NUMBER_MINOR 12 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 13 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a |