added: to config:

parameter: ezc_max_elements
          maximum number for elements through the whole template (ezc)
          default: 50000
       parameter: ezc_max_loop_elements
          maximum number of each [for] loop
          default: 5000 (from ezc generator)
added: to Request class:
       time_t start_time;
       tm start_tm;
       they are set when a request starts
       


git-svn-id: svn://ttmath.org/publicrep/winix/trunk@806 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2012-02-17 05:19:24 +00:00
parent 9d2be5c50d
commit 1a51b1adc7
11 changed files with 55 additions and 2 deletions

View File

@@ -84,10 +84,23 @@ void Request::Clear()
send_as_attachment = false;
using_ssl = false;
start_time = 0;
memset(&start_tm, 0, sizeof(start_tm));
}
void Request::RequestStarts()
{
// clearing it is better to use at the end of a request
// so starting is much faster
start_time = std::time(0);
start_tm = Time(start_time);
}
// value can be null
void Request::SetCookie(const char * name, const char * value, tm * expires)