--- parser3/src/include/pa_request_info.h 2003/07/24 11:31:21 1.2 +++ parser3/src/include/pa_request_info.h 2015/01/12 12:22:02 1.8 @@ -1,14 +1,14 @@ /** @file Parser: request info class decl. - Copyright (c) 2001-2003 ArtLebedev Group (http://www.artlebedev.com) + Copyright (c) 2001-2012 Art. Lebedev Studio (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) */ #ifndef PA_REQUEST_INFO_H #define PA_REQUEST_INFO_H -static const char* IDENT_REQUEST_INFO_H="$Date: 2003/07/24 11:31:21 $"; +#define IDENT_PA_REQUEST_INFO_H "$Id: pa_request_info.h,v 1.8 2015/01/12 12:22:02 misha Exp $" /// some information from web server class Request_info { @@ -22,11 +22,24 @@ public: const char* content_type; size_t content_length; const char* cookie; + + char** argv; + int args_skip; bool mail_received; //@} //@{ these are filed by Request class itself: user's post data const char* post_data; size_t post_size; //@} + + // misha@ Probably it's a good idea to move this method into targets, but de facto the only POST and PUT can have the body and all targets should support it + bool can_have_body(){ + return + method + && ( + strcasecmp(method, "POST") == 0 + || strcasecmp(method, "PUT") == 0 + ); + } }; #endif