Committer : entrope
CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Commit time: 2004-09-23 02:07:52 UTC
Modified files:
ircd/s_numeric.c
Log message:
Doxyfy s_numeric.c.
---------------------- diff included ----------------------
Index: ircu2.10/ircd/s_numeric.c
diff -u ircu2.10/ircd/s_numeric.c:1.8 ircu2.10/ircd/s_numeric.c:1.9
--- ircu2.10/ircd/s_numeric.c:1.8 Tue Jan 7 02:06:37 2003
+++ ircu2.10/ircd/s_numeric.c Wed Sep 22 19:07:42 2004
@@ -18,7 +18,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
- * $Id: s_numeric.c,v 1.8 2003/01/07 10:06:37 a1kmm Exp $
+ * $Id: s_numeric.c,v 1.9 2004/09/23 02:07:42 entrope Exp $
*/
#include "config.h"
@@ -44,6 +44,15 @@
* the savy approach is NEVER generate an error in response to an... error :)
*/
+/** Forwards a numeric message from a remote server.
+ * @param numeric Value of numeric message.
+ * @param nnn If non-zero, treat parv[1] as a numnick; else as a client name.
+ * @param cptr Client that originated the numeric.
+ * @param sptr Peer that sent us the numeric.
+ * @param parc Count of valid arguments in \a parv.
+ * @param parv Argument list.
+ * @return Zero (always).
+ */
int do_numeric(int numeric, int nnn, struct Client *cptr, struct Client *sptr,
int parc, char *parv[])
{
----------------------- End of diff -----------------------