summaryrefslogtreecommitdiff
path: root/sman.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sman.cpp')
-rw-r--r--sman.cpp43
1 files changed, 22 insertions, 21 deletions
diff --git a/sman.cpp b/sman.cpp
index 4c95b32..dd2138f 100644
--- a/sman.cpp
+++ b/sman.cpp
@@ -5,44 +5,45 @@
sman::sman()
{
- this->sessions=new hmap<sess *, string>(80);
- this->sessioncount=0;
+ this->sessions=new hmap<sess *, string>(80);
+ this->sessioncount=0;
}
sman::~sman()
{
- delete this->sessions;
+ delete this->sessions;
}
string sman::generateId( int len )
{
- string valid_chars="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_";
- string s_ret="";
- srand(time(0)+160682);
- for(int i=0;i<len;i++)
- {
- int i_char=rand() % 64;
- s_ret+=valid_chars[i_char];
- }
- return s_ret;
+ string valid_chars="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_";
+ string s_ret="";
+ srand(time(0)+160682);
+ for(int i=0;i<len;i++)
+ {
+ int i_char=rand() % 64;
+ s_ret+=valid_chars[i_char];
+ }
+ return s_ret;
}
sess *sman::createSession( )
{
- string new_id=this->generateId(s_tool::string2int( s_conf::get().get_val( "SESSION_LENGTH" ) ) );
+ string new_id=this->generateId(s_tool::string2int( s_conf::get
+ ().get_val( "SESSION_LENGTH" ) ) );
- sess *new_sess= new sess( new_id );
+ sess *new_sess= new sess( new_id );
- this->sessioncount++;
- this->sessions->add_elem( new_sess, new_id );
-
- return new_sess;
+ this->sessioncount++;
+ this->sessions->add_elem( new_sess, new_id );
+
+ return new_sess;
}
sess *sman::getSession( string s_id )
{
- return this->sessions->get_elem( s_id );
+ return this->sessions->get_elem( s_id );
}
void sman::destroySession( string s_id )
{
- this->sessioncount--;
- this->sessions->del_elem( s_id );
+ this->sessioncount--;
+ this->sessions->del_elem( s_id );
}
#endif