From 767b12b0ab6a0d4ed5f7335b26d1c0f842d99543 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 26 Jan 2003 23:52:48 +0000 Subject: Modified documentation for base classes git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@150 e03df62e-2008-0410-955e-edbf42e46eb7 --- docs/module-doc/users_8cpp-source.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 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 9557e2486..cca0d47c0 100644 --- a/docs/module-doc/users_8cpp-source.html +++ b/docs/module-doc/users_8cpp-source.html @@ -9,8 +9,8 @@

users.cpp

Go to the documentation of this file.
00001 /*
 00002 
 00003 $Log$
-00003 Revision 1.2  2003/01/23 20:38:00  brain
-00003 Updated documentation scripts
+00003 Revision 1.3  2003/01/26 23:52:48  brain
+00003 Modified documentation for base classes
 00003 
 00004 Revision 1.1.1.1  2003/01/23 19:45:58  brain
 00005 InspIRCd second source tree
@@ -38,7 +38,7 @@
 00027 {
 00028         // the PROPER way to do it, AVOID bzero at *ALL* costs
 00029         strcpy(nick,"");
-00030         ip = 0;
+00030         ip = 0;
 00031         strcpy(ident,"");
 00032         strcpy(host,"");
 00033         strcpy(dhost,"");
@@ -47,13 +47,13 @@
 00036         strcpy(inbuf,"");
 00037         strcpy(server,"");
 00038         strcpy(awaymsg,"");
-00039         fd = lastping = signon = idle_lastmsg = nping = registered = 0;
-00040         port = bytes_in = bytes_out = cmds_in = cmds_out = 0;
-00041         haspassed = false;
+00039         fd = lastping = signon = idle_lastmsg = nping = registered = 0;
+00040         port = bytes_in = bytes_out = cmds_in = cmds_out = 0;
+00041         haspassed = false;
 00042         strcpy(result,"");
 00043         for (int i = 0; i < MAXCHANS; i++)
 00044         {
-00045                 chans[i].channel = NULL;
+00045                 chans[i].channel = NULL;
 00046         }
 00047         invites.clear();
 00048 }
@@ -62,14 +62,14 @@
 00051 char* userrec::GetFullHost()
 00052 {
 00053         sprintf(result,"%s!%s@%s",nick,ident,dhost);
-00054         return result;
+00054         return result;
 00055 }
 00056 
 00057 
 00058 char* userrec::GetFullRealHost()
 00059 {
 00060         sprintf(result,"%s!%s@%s",nick,ident,host);
-00061         return result;
+00061         return result;
 00062 }
 00063 
 00064 bool userrec::IsInvited(char* channel)
@@ -101,7 +101,7 @@
 00090                 }
 00091         }
 00092 }
-

Generated on Thu Jan 23 20:28:57 2003 for InspIRCd by +
Generated on Sun Jan 26 23:45:47 2003 for InspIRCd by doxygen1.3-rc2
-- cgit v1.2.3