summaryrefslogtreecommitdiff
path: root/docs/module-doc/classServer.html
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2003-01-23 20:38:00 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2003-01-23 20:38:00 +0000
commitcc61d20faae9a29422d34a367db9ac54d8de3d0e (patch)
tree681496826918a1f42518133a9000e4992e3e3e98 /docs/module-doc/classServer.html
parent984035c87f0bb7baf327c2a5ecd6c8d5fe07ce07 (diff)
Updated documentation scripts
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@143 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'docs/module-doc/classServer.html')
-rw-r--r--docs/module-doc/classServer.html186
1 files changed, 93 insertions, 93 deletions
diff --git a/docs/module-doc/classServer.html b/docs/module-doc/classServer.html
index d7a809046..9e7a519d6 100644
--- a/docs/module-doc/classServer.html
+++ b/docs/module-doc/classServer.html
@@ -60,7 +60,7 @@ All modules should instantiate at least one copy of this class, and use its memb
<p>
<p>
-Definition at line <a class="el" href="modules_8h-source.html#l00121">121</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.<hr><h2>Constructor &amp; Destructor Documentation</h2>
+Definition at line <a class="el" href="modules_8h-source.html#l00127">127</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.<hr><h2>Constructor &amp; Destructor Documentation</h2>
<a name="a0" doxytag="Server::Server"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
<tr>
@@ -90,10 +90,10 @@ Default constructor.
<p>
Creates a Server object.
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00052">52</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00055">55</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00053 {
-00054 }
+<div class="fragment"><pre>00056 {
+00057 }
</pre></div> </td>
</tr>
</table>
@@ -126,10 +126,10 @@ Default destructor.
<p>
Destroys a Server object.
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00056">56</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00059">59</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00057 {
-00058 }
+<div class="fragment"><pre>00060 {
+00061 }
</pre></div> </td>
</tr>
</table>
@@ -173,12 +173,12 @@ Attempts to look up a user's privilages on a channel.
<p>
This function will return a string containing either @, , +, or an empty string, representing the user's privilages upon the channel you specify.
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00139">139</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00142">142</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00140 {
-00141 string mode = cmode(User,Chan);
-00142 <span class="keywordflow">return</span> mode;
-00143 }
+<div class="fragment"><pre>00143 {
+00144 string mode = cmode(User,Chan);
+00145 <span class="keywordflow">return</span> mode;
+00146 }
</pre></div> </td>
</tr>
</table>
@@ -221,11 +221,11 @@ Returns true if two users share a common channel.
<p>
This method is used internally by the NICK and QUIT commands, and the <a class="el" href="classServer.html#a10">Server::SendCommon</a> method.
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00102">102</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00105">105</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00103 {
-00104 <span class="keywordflow">return</span> (common_channels(u1,u2) != 0);
-00105 }
+<div class="fragment"><pre>00106 {
+00107 <span class="keywordflow">return</span> (common_channels(u1,u2) != 0);
+00108 }
</pre></div> </td>
</tr>
</table>
@@ -259,11 +259,11 @@ Sends a debug string.
<p>
This method writes a line of text to the debug log. If debugging is disabled in the configuration, this command has no effect.
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00065">65</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00068">68</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00066 {
-00067 debug(<span class="stringliteral">"%s"</span>,s.c_str());
-00068 }
+<div class="fragment"><pre>00069 {
+00070 debug(<span class="stringliteral">"%s"</span>,s.c_str());
+00071 }
</pre></div> </td>
</tr>
</table>
@@ -297,11 +297,11 @@ Attempts to look up a channel and return a pointer to it.
<p>
This function will return NULL if the channel does not exist.
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00134">134</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00137">137</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00135 {
-00136 <span class="keywordflow">return</span> FindChan(channel.c_str());
-00137 }
+<div class="fragment"><pre>00138 {
+00139 <span class="keywordflow">return</span> FindChan(channel.c_str());
+00140 }
</pre></div> </td>
</tr>
</table>
@@ -335,11 +335,11 @@ Attempts to look up a nick and return a pointer to it.
<p>
This function will return NULL if the nick does not exist.
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00129">129</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00132">132</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00130 {
-00131 <span class="keywordflow">return</span> Find(nick);
-00132 }
+<div class="fragment"><pre>00133 {
+00134 <span class="keywordflow">return</span> Find(nick);
+00135 }
</pre></div> </td>
</tr>
</table>
@@ -372,11 +372,11 @@ Returns the information of the server as returned by the /ADMIN command.
<p>
See the <a class="el" href="classAdmin.html">Admin</a> class for further information of the return value. The members <a class="el" href="classAdmin.html#m2">Admin::Nick</a>, <a class="el" href="classAdmin.html#m1">Admin::Email</a> and <a class="el" href="classAdmin.html#m0">Admin::Name</a> contain the information for the server where the module is loaded.
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00155">155</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00158">158</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00156 {
-00157 <span class="keywordflow">return</span> <a class="code" href="classAdmin.html">Admin</a>(getadminname(),getadminemail(),getadminnick());
-00158 }
+<div class="fragment"><pre>00159 {
+00160 <span class="keywordflow">return</span> <a class="code" href="classAdmin.html">Admin</a>(getadminname(),getadminemail(),getadminnick());
+00161 }
</pre></div> </td>
</tr>
</table>
@@ -409,11 +409,11 @@ Returns the network name, global to all linked servers.
<p>
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00150">150</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00153">153</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00151 {
-00152 <span class="keywordflow">return</span> getnetworkname();
-00153 }
+<div class="fragment"><pre>00154 {
+00155 <span class="keywordflow">return</span> getnetworkname();
+00156 }
</pre></div> </td>
</tr>
</table>
@@ -446,11 +446,11 @@ Returns the server name of the server where the module is loaded.
<p>
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00145">145</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00148">148</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00146 {
-00147 <span class="keywordflow">return</span> getservername();
-00148 }
+<div class="fragment"><pre>00149 {
+00150 <span class="keywordflow">return</span> getservername();
+00151 }
</pre></div> </td>
</tr>
</table>
@@ -484,11 +484,11 @@ Returns true if a nick is valid.
<p>
Nicks for unregistered connections will return false.
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00124">124</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00127">127</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00125 {
-00126 <span class="keywordflow">return</span> (isnick(nick.c_str()) != 0);
-00127 }
+<div class="fragment"><pre>00128 {
+00129 <span class="keywordflow">return</span> (isnick(nick.c_str()) != 0);
+00130 }
</pre></div> </td>
</tr>
</table>
@@ -531,11 +531,11 @@ Sends a line of text down a TCP/IP socket.
<p>
This method writes a line of text to an established socket, cutting it to 510 characters plus a carriage return and linefeed if required.
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00070">70</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00073">73</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00071 {
-00072 Write(Socket,<span class="stringliteral">"%s"</span>,s.c_str());
-00073 }
+<div class="fragment"><pre>00074 {
+00075 Write(Socket,<span class="stringliteral">"%s"</span>,s.c_str());
+00076 }
</pre></div> </td>
</tr>
</table>
@@ -590,18 +590,18 @@ Sends text from a user to a channel (mulicast).
<p>
This method writes a line of text to a channel, with the given user's nick/ident /host combination prepended, as used in PRIVMSG etc commands (see RFC 1459). If the IncludeSender flag is set, then the text is also sent back to the user from which it originated, as seen in MODE (see RFC 1459).
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00090">90</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
-<p>
-<div class="fragment"><pre>00091 {
-00092 <span class="keywordflow">if</span> (IncludeSender)
-00093 {
-00094 WriteChannel(Channel,User,<span class="stringliteral">"%s"</span>,s.c_str());
-00095 }
-00096 <span class="keywordflow">else</span>
-00097 {
-00098 ChanExceptSender(Channel,User,<span class="stringliteral">"%s"</span>,s.c_str());
-00099 }
-00100 }
+Definition at line <a class="el" href="modules_8cpp-source.html#l00093">93</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+<p>
+<div class="fragment"><pre>00094 {
+00095 <span class="keywordflow">if</span> (IncludeSender)
+00096 {
+00097 WriteChannel(Channel,User,<span class="stringliteral">"%s"</span>,s.c_str());
+00098 }
+00099 <span class="keywordflow">else</span>
+00100 {
+00101 ChanExceptSender(Channel,User,<span class="stringliteral">"%s"</span>,s.c_str());
+00102 }
+00103 }
</pre></div> </td>
</tr>
</table>
@@ -650,18 +650,18 @@ Sends text from a user to one or more channels (mulicast).
<p>
This method writes a line of text to all users which share a common channel with a given user, with the user's nick/ident/host combination prepended, as used in PRIVMSG etc commands (see RFC 1459). If the IncludeSender flag is set, then the text is also sent back to the user from which it originated, as seen in NICK (see RFC 1459). Otherwise, it is only sent to the other recipients, as seen in QUIT.
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00107">107</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
-<p>
-<div class="fragment"><pre>00108 {
-00109 <span class="keywordflow">if</span> (IncludeSender)
-00110 {
-00111 WriteCommon(User,<span class="stringliteral">"%s"</span>,text.c_str());
-00112 }
-00113 <span class="keywordflow">else</span>
-00114 {
-00115 WriteCommonExcept(User,<span class="stringliteral">"%s"</span>,text.c_str());
-00116 }
-00117 }
+Definition at line <a class="el" href="modules_8cpp-source.html#l00110">110</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+<p>
+<div class="fragment"><pre>00111 {
+00112 <span class="keywordflow">if</span> (IncludeSender)
+00113 {
+00114 WriteCommon(User,<span class="stringliteral">"%s"</span>,text.c_str());
+00115 }
+00116 <span class="keywordflow">else</span>
+00117 {
+00118 WriteCommonExcept(User,<span class="stringliteral">"%s"</span>,text.c_str());
+00119 }
+00120 }
</pre></div> </td>
</tr>
</table>
@@ -710,11 +710,11 @@ Sends text from a user to a socket.
<p>
This method writes a line of text to an established socket, with the given user's nick/ident /host combination prepended, as used in PRIVSG etc commands (see RFC 1459)
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00080">80</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00083">83</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00081 {
-00082 WriteFrom(Socket,User,<span class="stringliteral">"%s"</span>,s.c_str());
-00083 }
+<div class="fragment"><pre>00084 {
+00085 WriteFrom(Socket,User,<span class="stringliteral">"%s"</span>,s.c_str());
+00086 }
</pre></div> </td>
</tr>
</table>
@@ -748,11 +748,11 @@ Sends text to all opers.
<p>
This method sends a server notice to all opers with the usermode +s.
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00060">60</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00063">63</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00061 {
-00062 WriteOpers(<span class="stringliteral">"%s"</span>,s.c_str());
-00063 }
+<div class="fragment"><pre>00064 {
+00065 WriteOpers(<span class="stringliteral">"%s"</span>,s.c_str());
+00066 }
</pre></div> </td>
</tr>
</table>
@@ -795,11 +795,11 @@ Sends text from the server to a socket.
<p>
This method writes a line of text to an established socket, with the servername prepended as used by numerics (see RFC 1459)
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00075">75</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00078">78</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00076 {
-00077 WriteServ(Socket,<span class="stringliteral">"%s"</span>,s.c_str());
-00078 }
+<div class="fragment"><pre>00079 {
+00080 WriteServ(Socket,<span class="stringliteral">"%s"</span>,s.c_str());
+00081 }
</pre></div> </td>
</tr>
</table>
@@ -848,11 +848,11 @@ Sends text from a user to another user.
<p>
This method writes a line of text to a user, with a user's nick/ident /host combination prepended, as used in PRIVMSG etc commands (see RFC 1459)
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00085">85</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00088">88</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00086 {
-00087 WriteTo(Source,Dest,<span class="stringliteral">"%s"</span>,s.c_str());
-00088 }
+<div class="fragment"><pre>00089 {
+00090 WriteTo(Source,Dest,<span class="stringliteral">"%s"</span>,s.c_str());
+00091 }
</pre></div> </td>
</tr>
</table>
@@ -895,17 +895,17 @@ Sends a WALLOPS message.
<p>
This method writes a WALLOPS message to all users with the +w flag, originating from the specified user.
<p>
-Definition at line <a class="el" href="modules_8cpp-source.html#l00119">119</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
+Definition at line <a class="el" href="modules_8cpp-source.html#l00122">122</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
<p>
-<div class="fragment"><pre>00120 {
-00121 WriteWallOps(User,<span class="stringliteral">"%s"</span>,text.c_str());
-00122 }
+<div class="fragment"><pre>00123 {
+00124 WriteWallOps(User,<span class="stringliteral">"%s"</span>,text.c_str());
+00125 }
</pre></div> </td>
</tr>
</table>
<hr>The documentation for this class was generated from the following files:<ul>
<li><a class="el" href="modules_8h-source.html">modules.h</a><li><a class="el" href="modules_8cpp-source.html">modules.cpp</a></ul>
-<hr><address style="align: right;"><small>Generated on Wed Jan 22 20:56:48 2003 for InspIRCd by
+<hr><address style="align: right;"><small>Generated on Thu Jan 23 20:28:59 2003 for InspIRCd by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0
width=110 height=53></a>1.3-rc2 </small></address>