summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-31 19:37:22 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-31 19:37:22 +0000
commitb2b7bfd5e94760b3d4ab1832edd4e5a26b8b8fd9 (patch)
treef849a4a04c45959dcb756cf24bbfb1d4a24833d4 /src/inspircd.cpp
parent46a4409b754ffa05dcebfe7381813a51ad479c1f (diff)
This may not compile, I'll test it on my desktop. Waiting 20 minutes for a build is unacceptable.
- Move UUID initialisation to InspIRCd::InitialiseUID() - Call it if we run out of existing UUIDs - Call it on startup Just a small cleanup. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8007 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp23
1 files changed, 16 insertions, 7 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index fe36208d1..949d8a3ae 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -435,7 +435,7 @@ InspIRCd::InspIRCd(int argc, char** argv)
this->Modules->handles.resize(255);
/*
- * Initialise UID. XXX, we need to read SID from config, and use it instead of 000.
+ * Initialise SID/UID.
* For an explanation as to exactly how this works, and why it works this way, see GetUID().
* -- w00t
*/
@@ -457,13 +457,8 @@ InspIRCd::InspIRCd(int argc, char** argv)
Config->sid = sid;
}
- current_uid[0] = sid / 100 + 48;
- current_uid[1] = ((sid / 10) % 10) + 48;
- current_uid[2] = sid % 10 + 48;
- /* Initialise UID */
- for(i = 3; i < UUID_LENGTH - 1; i++)
- current_uid[i] = 'A';
+ this->InitialiseUID();
/* set up fake client */
this->FakeClient = new userrec(this);
@@ -577,6 +572,20 @@ InspIRCd::InspIRCd(int argc, char** argv)
this->WritePID(Config->PID);
}
+/* moved to a function, as UID generation can call this also */
+void InspIRCd::InitialiseUID()
+{
+ size_t sid = Config->sid;
+
+ current_uid[0] = sid / 100 + 48;
+ current_uid[1] = ((sid / 10) % 10) + 48;
+ current_uid[2] = sid % 10 + 48;
+
+ /* Initialise UID */
+ for(i = 3; i < UUID_LENGTH - 1; i++)
+ current_uid[i] = 'A';
+}
+
void InspIRCd::DoOneIteration(bool process_module_sockets)
{
#ifndef WIN32