* 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:
Zeev Suraski 1999-05-11 20:38:16 +00:00
parent 702829709c
commit ceeb9b38ba
6 changed files with 62 additions and 21 deletions

View file

@ -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;