winix/functions
Tomasz Sowa 76314aab10 added: possibility to encode the session cookie (added files core/sessionidmanager.h and core/sessionidmanager.cpp)
added: config options:
       // whether or not we should encode the session cookie
       // (we have a special algorithm)
       // default: false
       bool session_cookie_encode;

       // if session_cookie_encode is true then you should provide
       // a file where AES keys will be stored
       std::wstring session_keys_file;

       // each session has an index -- an unsigned int value
       // this value is sent in the cookie string (is encoded)
       // and is incremented when session_index_time_increment time is passed since the last incrementing
       // if a client sent the cookie back the difference between
       // current index and the index in the cookie should be less than or equal to session_allow_index_difference
       // default: 8
       size_t session_allow_index_difference;

       // the time which should pass after the session index is incremented
       // default: 30
       // (session_allow_index_difference + 1) * session_index_time_increment should be less than a time
       // load of a page and all elements on it such as images (of course it depends on client's download too)
       time_t session_index_time_increment;

       // time in seconds after a new AES key pair should be generated
       // we have 256 pairs of keys so this time multiplied by 256 should not be less than
       // the max time of a session (session_remember_max_idle),
       // by default: 256 * 2 days = 512 days = 1.4 year > 3 months (session_remember_max_idle)
       // default: 172800 = 2 days (max: 2678400 = 1 month, min: 10)
       size_t session_key_renew_time;

changed: when printing the time of a request we print only two non-zero digits






git-svn-id: svn://ttmath.org/publicrep/winix/trunk@994 e52654a7-88a9-db11-a3e9-0013d4bc506e
2014-11-22 15:30:56 +00:00
..
Makefile removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
Makefile.dep added: possibility to encode the session cookie (added files core/sessionidmanager.h and core/sessionidmanager.cpp) 2014-11-22 15:30:56 +00:00
Makefile.o.dep removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
account.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
account.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
adduser.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
adduser.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
cat.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
cat.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
chmod.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
chmod.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
chown.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
chown.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
ckeditor.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
ckeditor.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
cp.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
cp.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
default.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
default.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
download.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
download.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
emacs.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
emacs.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
env.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
env.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
functionbase.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
functionbase.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
functionparser.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
functionparser.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
functions.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
functions.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
imgcrop.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
imgcrop.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
ipban.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
ipban.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
last.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
last.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
ln.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
ln.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
locale.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
locale.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
login.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
login.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
logout.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
logout.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
ls.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
ls.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
man.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
man.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
meta.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
meta.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
mkdir.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
mkdir.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
mount.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
mount.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
mv.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
mv.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
nicedit.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
nicedit.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
node.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
node.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
passwd.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
passwd.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
priv.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
priv.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
privchanger.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
privchanger.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
pw.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
pw.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
reload.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
reload.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
rm.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
rm.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
rmuser.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
rmuser.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
run.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
run.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
sort.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
sort.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
specialdefault.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
specialdefault.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
stat.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
stat.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
subject.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
subject.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
template.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
template.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
timezone.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
timezone.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
tinymce.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
tinymce.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
uname.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
uname.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
upload.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
upload.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
uptime.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
uptime.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
vim.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
vim.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
who.cpp removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00
who.h removed: svn:executable attribute from files 2014-11-01 17:05:20 +00:00