mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
* Finally commit that -q patch
* Refine SAPI built in header support * Use DllMain() in ISAPI to clean after threads and initialize tsrm/sapi as soon as possible.
This commit is contained in:
parent
702829709c
commit
ceeb9b38ba
6 changed files with 62 additions and 21 deletions
|
@ -27,6 +27,7 @@ typedef struct {
|
|||
zend_llist headers;
|
||||
int http_response_code;
|
||||
unsigned char send_default_content_type;
|
||||
char *http_status_line;
|
||||
} sapi_headers_struct;
|
||||
|
||||
|
||||
|
@ -49,6 +50,10 @@ typedef struct {
|
|||
char *content_type;
|
||||
|
||||
unsigned char headers_only;
|
||||
|
||||
/* for HTTP authentication */
|
||||
char *auth_user;
|
||||
char *auth_password;
|
||||
} sapi_request_info;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue