diff options
author | Zeev Suraski <zeev@php.net> | 1999-05-12 21:35:16 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-05-12 21:35:16 +0000 |
commit | 49b01a4b3dc6d660e33801bdae840c9448da11cc (patch) | |
tree | f1484e32a32d10e4a1f5ecb58453707d8e017706 /main/main.c | |
parent | cefca57c9c845101cb8d39b0cc062d20e2da791d (diff) | |
download | php-git-49b01a4b3dc6d660e33801bdae840c9448da11cc.tar.gz |
Support HTTP Auth under ISAPI. Now, these short pieces of code took *A LOT* of
research :(
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/main/main.c b/main/main.c index 2f2d0d6508..0b9d086fa7 100644 --- a/main/main.c +++ b/main/main.c @@ -629,6 +629,26 @@ int php_request_startup(CLS_D ELS_DC PLS_DC SLS_DC) init_executor(CLS_C ELS_CC); startup_scanner(CLS_C); + if (SG(request_info).auth_user) { + zval *auth_user; + + MAKE_STD_ZVAL(auth_user); + auth_user->type = IS_STRING; + auth_user->value.str.val = SG(request_info).auth_user; + auth_user->value.str.len = strlen(auth_user->value.str.val); + + zend_hash_update(&EG(symbol_table), "PHP_AUTH_USER", sizeof("PHP_AUTH_USER"), &auth_user, sizeof(zval *), NULL); + } + if (SG(request_info).auth_user) { + zval *auth_password; + + MAKE_STD_ZVAL(auth_password); + auth_password->type = IS_STRING; + auth_password->value.str.val = SG(request_info).auth_password; + auth_password->value.str.len = strlen(auth_password->value.str.val); + + zend_hash_update(&EG(symbol_table), "PHP_AUTH_PW", sizeof("PHP_AUTH_PW"), &auth_password, sizeof(zval *), NULL); + } return SUCCESS; } |