diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/inspircd.h | 4 | ||||
-rw-r--r-- | include/uid.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index edf8cd854..05e33cf0c 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -289,9 +289,9 @@ class CoreExport InspIRCd : public classbase */ void DoSocketTimeouts(time_t TIME); - /** Sets up UID subsystem + /** Increments the current UID by one. */ - void InitialiseUID(); + void IncrementUID(int pos); /** Perform background user events such as PING checks */ diff --git a/include/uid.h b/include/uid.h index f5384049c..63b3e89f2 100644 --- a/include/uid.h +++ b/include/uid.h @@ -16,6 +16,6 @@ * This length is set in compliance with TS6 protocol, and really should not be changed. Ever. * It allows for a lot of clients as-is. -- w00t. */ -#define UUID_LENGTH 10 +#define UUID_LENGTH 9 |