From 78a96055c428d1970ece93dfb01902ac0d1699bd Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 4 Apr 2004 22:03:32 +0000 Subject: New documentation to document user/channel mode handling git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@380 e03df62e-2008-0410-955e-edbf42e46eb7 --- docs/module-doc/users_8cpp-source.html | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) (limited to 'docs/module-doc/users_8cpp-source.html') diff --git a/docs/module-doc/users_8cpp-source.html b/docs/module-doc/users_8cpp-source.html index 692328224..2c4d80069 100644 --- a/docs/module-doc/users_8cpp-source.html +++ b/docs/module-doc/users_8cpp-source.html @@ -5,7 +5,7 @@
-Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  
+Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

users.cpp

Go to the documentation of this file.
00001 /*
 00002 
 00003 */
@@ -77,18 +77,22 @@
 00069 
 00070 void userrec::RemoveInvite(char* channel)
 00071 {
-00072         for (InvitedList::iterator i = invites.begin(); i != invites.end(); i++)
-00073         {
-00074                 if (i->channel) {
-00075                         if (!strcasecmp(i->channel,channel))
-00076                         {
-00077                                 invites.erase(i);
-00078                                 return;
-00079                         }
-00080                 }
-00081         }
-00082 }
-

Generated on Sat Apr 3 16:36:03 2004 for InspIRCd by +00072 log(DEBUG,"Removing invites"); +00073 if (invites.size()) +00074 { +00075 for (InvitedList::iterator i = invites.begin(); i != invites.end(); i++) +00076 { +00077 if (i->channel) { +00078 if (!strcasecmp(i->channel,channel)) +00079 { +00080 invites.erase(i); +00081 return; +00082 } +00083 } +00084 } +00085 } +00086 } +
Generated on Sun Apr 4 23:02:14 2004 for InspIRCd by doxygen1.3-rc3
-- cgit v1.2.3