Skip to content
Snippets Groups Projects
Commit dcd00c7b authored by rswindell's avatar rswindell
Browse files

Deuce added support for CGI inactivity.

parent a2e6982a
Branches
Tags
No related merge requests found
......@@ -327,6 +327,12 @@ void sbbs_read_ini(
SAFECOPY(web->js_ext
,iniReadString(fp,section,"JavaScriptExtension",".js"));
web->max_inactivity
=iniReadShortInt(fp,section,"MaxInactivity",120); /* seconds */
web->max_cgi_inactivity
=iniReadShortInt(fp,section,"MaxCgiInactivity",120); /* seconds */
#ifdef __unix__
default_cgi_temp = "/tmp";
#else
......
......@@ -45,7 +45,7 @@ typedef struct {
WORD port;
WORD max_clients;
WORD max_inactivity;
WORD reserved_word4;
WORD max_cgi_inactivity;
WORD reserved_word3;
WORD reserved_word2;
WORD reserved_word1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment