--- parser3/src/classes/form.C 2002/03/27 15:30:33 1.22 +++ parser3/src/classes/form.C 2002/08/01 11:26:43 1.27 @@ -3,21 +3,19 @@ Copyright (c) 2001, 2002 ArtLebedev Group (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) - - $Id: form.C,v 1.22 2002/03/27 15:30:33 paf Exp $ */ +static const char* IDENT_FORM_C="$Id: form.C,v 1.27 2002/08/01 11:26:43 paf Exp $"; + #include "classes.h" #include "pa_request.h" #include "pa_vform.h" /// $LIMITS.max_post_size default 10M -const size_t MAX_POST_SIZE_DEFAULT=10*0x400*400; +const size_t MAX_POST_SIZE_DEFAULT=10*0x400*0x400; // defines -#define FORM_CLASS_NAME "form" - #define LIMITS_NAME "LIMITS" #define MAX_POST_SIZE_NAME "post_max_size" @@ -39,11 +37,9 @@ private: // constructor & configurator -MForm::MForm(Pool& apool) : Methoded(apool), +MForm::MForm(Pool& apool) : Methoded(apool, "form"), max_post_size_name(apool, MAX_POST_SIZE_NAME), - limits_name(apool, LIMITS_NAME) -{ - set_name(*NEW String(pool(), FORM_CLASS_NAME)); + limits_name(apool, LIMITS_NAME) { } void MForm::configure_admin(Request& r) { @@ -60,12 +56,12 @@ void MForm::configure_admin(Request& r) throw Exception("parser.runtime", 0, "posted content_length(%u) > max_post_size(%u)", - r.post_size, max_post_size); + r.info.content_length, max_post_size); if(r.info.content_length<0) throw Exception(0, 0, "posted content_length(%u) < 0", - r.post_size); + r.info.content_length); // read POST data if(r.info.content_length) { @@ -75,7 +71,7 @@ void MForm::configure_admin(Request& r) if(r.post_size!=r.info.content_length) throw Exception(0, 0, - "post_size(%u)!=content_length(%u)", + "post_size(%u) != content_length(%u)", r.post_size, r.info.content_length); } }