SG(request_info).auth_user = NULL;
SG(request_info).auth_password = NULL;
- if (TG(hc)->authorization[0] != '\0'
- && strncmp(TG(hc)->authorization, "Basic ", 6) == 0) {
- char *pass;
- char *user;
-
- user = php_base64_decode(TG(hc)->authorization + 6, strlen(TG(hc)->authorization) - 6, NULL);
- if (user) {
- pass = strchr(user, ':');
- if (pass) {
- *pass++ = '\0';
- SG(request_info).auth_user = user;
- SG(request_info).auth_password = estrdup(pass);
- } else
- efree(user);
- }
- }
+ php_handle_auth_data(TG(hc)->authorization SLS_CC);
TG(post_off) = TG(hc)->read_idx - TG(hc)->checked_idx;