|
|
| version 1.74.2.1, 2002/06/20 16:31:09 | version 1.77, 2002/08/01 11:26:53 |
|---|---|
| Line 3 | Line 3 |
| Copyright (c) 2000,2001, 2002 ArtLebedev Group (http://www.artlebedev.com) | Copyright (c) 2000,2001, 2002 ArtLebedev Group (http://www.artlebedev.com) |
| Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru) | Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru) |
| $Id$ | |
| */ | */ |
| static const char* IDENT_PARSER3ISAPI_C="$Id$"; | |
| #ifndef _MSC_VER | #ifndef _MSC_VER |
| # error compile ISAPI module with MSVC [no urge for now to make it autoconf-ed (PAF)] | # error compile ISAPI module with MSVC [no urge for now to make it autoconf-ed (PAF)] |
| #endif | #endif |
| Line 30 | Line 30 |
| // consts | // consts |
| extern const char *main_RCSIds[]; | |
| #ifdef USE_SMTP | |
| extern const char *smtp_RCSIds[]; | |
| #endif | |
| extern const char *gd_RCSIds[]; | |
| extern const char *classes_RCSIds[]; | |
| extern const char *types_RCSIds[]; | |
| extern const char *parser3isapi_RCSIds[]; | |
| const char **RCSIds[]={ | |
| main_RCSIds, | |
| #ifdef USE_SMTP | |
| smtp_RCSIds, | |
| #endif | |
| gd_RCSIds, | |
| classes_RCSIds, | |
| types_RCSIds, | |
| parser3isapi_RCSIds, | |
| 0 | |
| }; | |
| const char *IIS51vars[]={ | const char *IIS51vars[]={ |
| "APPL_MD_PATH", "APPL_PHYSICAL_PATH", | "APPL_MD_PATH", "APPL_PHYSICAL_PATH", |
| "AUTH_PASSWORD", "AUTH_TYPE", "AUTH_USER", | "AUTH_PASSWORD", "AUTH_TYPE", "AUTH_USER", |
| Line 376 void real_parser_handler(Pool& pool, LPE | Line 356 void real_parser_handler(Pool& pool, LPE |
| request_info.content_type=lpECB->lpszContentType; | request_info.content_type=lpECB->lpszContentType; |
| request_info.content_length=lpECB->cbTotalBytes; | request_info.content_length=lpECB->cbTotalBytes; |
| request_info.cookie=SAPI::get_env(pool, "HTTP_COOKIE"); | request_info.cookie=SAPI::get_env(pool, "HTTP_COOKIE"); |
| request_info.mail_received=false; | |
| // prepare to process request | // prepare to process request |
| Request request(pool, | Request request(pool, |