From 08e384bb24398224856c44baa51b51977644de9d Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 9 Feb 2003 12:49:00 +0000 Subject: Documentation update, 09/02/03 git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@167 e03df62e-2008-0410-955e-edbf42e46eb7 --- docs/module-doc/classuserrec.html | 168 +++++++++++++++++++------------------- 1 file changed, 84 insertions(+), 84 deletions(-) (limited to 'docs/module-doc/classuserrec.html') diff --git a/docs/module-doc/classuserrec.html b/docs/module-doc/classuserrec.html index aa54ae1f8..4a9b325d0 100644 --- a/docs/module-doc/classuserrec.html +++ b/docs/module-doc/classuserrec.html @@ -61,7 +61,7 @@ Everything about a connection is stored here primarily, from the user's socket I

-Definition at line 92 of file users.h.


Constructor & Destructor Documentation

+Definition at line 58 of file users.h.

Constructor & Destructor Documentation

@@ -89,32 +89,32 @@ Definition at line 92 of fi

-Definition at line 26 of file users.cpp. +Definition at line 11 of file users.cpp.

-References connection::bytes_in, connection::bytes_out, ucrec::channel, chans, connection::cmds_in, connection::cmds_out, connection::fd, connection::haspassed, connection::idle_lastmsg, invites, connection::ip, connection::lastping, connection::nping, connection::port, connection::registered, and connection::signon. +References connection::bytes_in, connection::bytes_out, ucrec::channel, chans, connection::cmds_in, connection::cmds_out, connection::fd, connection::haspassed, connection::idle_lastmsg, invites, connection::ip, connection::lastping, connection::nping, connection::port, connection::registered, and connection::signon.

-

00027 {
-00028         // the PROPER way to do it, AVOID bzero at *ALL* costs
-00029         strcpy(nick,"");
-00030         ip = 0;
-00031         strcpy(ident,"");
-00032         strcpy(host,"");
-00033         strcpy(dhost,"");
-00034         strcpy(fullname,"");
-00035         strcpy(modes,"");
-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;
-00042         strcpy(result,"");
-00043         for (int i = 0; i < MAXCHANS; i++)
-00044         {
-00045                 chans[i].channel = NULL;
-00046         }
-00047         invites.clear();
-00048 }
+
00012 {
+00013         // the PROPER way to do it, AVOID bzero at *ALL* costs
+00014         strcpy(nick,"");
+00015         ip = 0;
+00016         strcpy(ident,"");
+00017         strcpy(host,"");
+00018         strcpy(dhost,"");
+00019         strcpy(fullname,"");
+00020         strcpy(modes,"");
+00021         strcpy(inbuf,"");
+00022         strcpy(server,"");
+00023         strcpy(awaymsg,"");
+00024         fd = lastping = signon = idle_lastmsg = nping = registered = 0;
+00025         port = bytes_in = bytes_out = cmds_in = cmds_out = 0;
+00026         haspassed = false;
+00027         strcpy(result,"");
+00028         for (int i = 0; i < MAXCHANS; i++)
+00029         {
+00030                 chans[i].channel = NULL;
+00031         }
+00032         invites.clear();
+00033 }
 
@@ -145,9 +145,9 @@ References connection::byt

-Definition at line 144 of file users.h. +Definition at line 110 of file users.h.

-

00144 {  }
+
00110 {  }
 
@@ -181,14 +181,14 @@ Returns the full displayed host of the user This member function returns the hos

-Definition at line 51 of file users.cpp. +Definition at line 36 of file users.cpp.

-References result. +References result.

-

00052 {
-00053         sprintf(result,"%s!%s@%s",nick,ident,dhost);
-00054         return result;
-00055 }
+
00037 {
+00038         sprintf(result,"%s!%s@%s",nick,ident,dhost);
+00039         return result;
+00040 }
 
@@ -221,14 +221,14 @@ Returns the full real host of the user This member function returns the hostname

If any form of hostname cloaking is in operation, e.g. through a module, then this method will ignore it and return the true hostname.

-Definition at line 58 of file users.cpp. +Definition at line 43 of file users.cpp.

-References result. +References result.

-

00059 {
-00060         sprintf(result,"%s!%s@%s",nick,ident,host);
-00061         return result;
-00062 }
+
00044 {
+00045         sprintf(result,"%s!%s@%s",nick,ident,host);
+00046         return result;
+00047 }
 
@@ -262,15 +262,15 @@ Adds a channel to a users invite list (invites them to a channel).

-Definition at line 75 of file users.cpp. +Definition at line 60 of file users.cpp.

-References Invited::channel, and invites. +References Invited::channel, and invites.

-

00076 {
-00077         Invited i;
-00078         strcpy(i.channel,channel);
-00079         invites.push_back(i);
-00080 }
+
00061 {
+00062         Invited i;
+00063         strcpy(i.channel,channel);
+00064         invites.push_back(i);
+00065 }
 
@@ -304,19 +304,19 @@ Returns true if a user is invited to a channel.

-Definition at line 64 of file users.cpp. +Definition at line 49 of file users.cpp.

-References invites. +References invites.

-

00065 {
-00066         for (InvitedList::iterator i = invites.begin(); i != invites.end(); i++)
-00067         {
-00068                 if (!strcasecmp(i->channel,channel))
-00069                 {
-00070                         return true;
-00071                 }
-00072         }
-00073 }
+
00050 {
+00051         for (InvitedList::iterator i = invites.begin(); i != invites.end(); i++)
+00052         {
+00053                 if (!strcasecmp(i->channel,channel))
+00054                 {
+00055                         return true;
+00056                 }
+00057         }
+00058 }
 
@@ -350,20 +350,20 @@ Removes a channel from a users invite list.

This member function is called on successfully joining an invite only channel to which the user has previously been invited, to clear the invitation.

-Definition at line 82 of file users.cpp. +Definition at line 67 of file users.cpp.

-References invites. +References invites.

-

00083 {
-00084         for (InvitedList::iterator i = invites.begin(); i != invites.end(); i++)
-00085         {
-00086                 if (!strcasecmp(i->channel,channel))
-00087                 {
-00088                         invites.erase(i);
-00089                         return;
-00090                 }
-00091         }
-00092 }
+
00068 {
+00069         for (InvitedList::iterator i = invites.begin(); i != invites.end(); i++)
+00070         {
+00071                 if (!strcasecmp(i->channel,channel))
+00072                 {
+00073                         invites.erase(i);
+00074                         return;
+00075                 }
+00076         }
+00077 }
 
@@ -391,7 +391,7 @@ The user's away message.

If this string is empty, the user is not marked as away.

-Definition at line 135 of file users.h. +Definition at line 101 of file users.h.

@@ -415,9 +415,9 @@ Definition at line 135 of f

-Definition at line 126 of file users.h. +Definition at line 92 of file users.h.

-Referenced by userrec(). +Referenced by userrec().

@@ -441,9 +441,9 @@ Referenced by userrec().

The host displayed to non-opers (used for cloaking etc).

-This usually matches the value of userrec::host. +This usually matches the value of userrec::host.

-Definition at line 114 of file users.h. +Definition at line 80 of file users.h.

@@ -469,7 +469,7 @@ The users full name.

-Definition at line 118 of file users.h. +Definition at line 84 of file users.h.

@@ -495,7 +495,7 @@ The users ident reply.

-Definition at line 109 of file users.h. +Definition at line 75 of file users.h.

@@ -521,9 +521,9 @@ A list of channels the user has a pending invite to.

-Definition at line 98 of file users.h. +Definition at line 64 of file users.h.

-Referenced by InviteTo(), IsInvited(), RemoveInvite(), and userrec(). +Referenced by InviteTo(), IsInvited(), RemoveInvite(), and userrec().

@@ -549,7 +549,7 @@ The user's mode string.

This may contain any of the following RFC characters: o, w, s, i Your module may define other mode characters as it sees fit.

-Definition at line 124 of file users.h. +Definition at line 90 of file users.h.

@@ -575,7 +575,7 @@ The users nickname.

An invalid nickname indicates an unregistered connection prior to the NICK command.

-Definition at line 105 of file users.h. +Definition at line 71 of file users.h.

@@ -601,9 +601,9 @@ Stores the result of the last GetFullHost or GetRealHost call.

You may use this to increase the speed of use of this class.

-Definition at line 140 of file users.h. +Definition at line 106 of file users.h.

-Referenced by GetFullHost(), and GetFullRealHost(). +Referenced by GetFullHost(), and GetFullRealHost().

@@ -629,12 +629,12 @@ The server the user is connected to.

-Definition at line 130 of file users.h. +Definition at line 96 of file users.h.


The documentation for this class was generated from the following files: -
Generated on Mon Jan 27 00:23:14 2003 for InspIRCd by +
Generated on Sun Feb 9 12:48:19 2003 for InspIRCd by doxygen1.3-rc2
-- cgit v1.2.3