]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/users.h
Fixed to not allow :Abc NICK Abc, where the case of the old and new nick are *identical*
[user/henk/code/inspircd.git] / include / users.h
index 9d0dabe74fdec087f0c4cd54cdb8f37006b2c9a1..b5532f1e2a825865e92165933eb70df7fcf87d2f 100644 (file)
@@ -36,6 +36,8 @@
 #define CC_ALLOW       0
 #define CC_DENY                1
 
+template<typename T> inline string ConvToStr(const T &in);
+
 /** Holds a channel name to which a user has been invited.
  */
 class Invited : public classbase
@@ -351,5 +353,7 @@ void AddWhoWas(userrec* u);
 void AddClient(int socket, char* host, int port, bool iscached, char* ip);
 void FullConnectUser(userrec* user);
 void ConnectUser(userrec *user);
+userrec* ReHashNick(char* Old, char* New);
+void force_nickchange(userrec* user,const char* newnick);
 
 #endif