diff options
Diffstat (limited to 'src/parse.c')
-rw-r--r-- | src/parse.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/src/parse.c b/src/parse.c index 82175de..54ac137 100644 --- a/src/parse.c +++ b/src/parse.c @@ -1,8 +1,7 @@ /* - * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd). - * parse.c: The message parser. + * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) * - * Copyright (C) 2002 by the past and present ircd coders, and others. + * Copyright (c) 1997-2014 ircd-hybrid development team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,8 +17,11 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id$ + */ + +/*! \file parse.c + * \brief The message parser. + * \version $Id$ */ #include "stdinc.h" @@ -37,6 +39,7 @@ #include "s_user.h" #include "s_serv.h" + /* * (based on orabidoo's parser code) * @@ -51,7 +54,7 @@ * 't' points -> [MessageTree *] 'r' -> [MessageTree *] -> 'i' * -> [MessageTree *] -> [MessageTree *] -> 'e' and matches * - * 'i' -> [MessageTree *] -> 'e' and matches + * 'i' -> [MessageTree *] -> 'e' and matches * * BUGS (Limitations!) * @@ -210,7 +213,7 @@ parse(struct Client *client_p, char *pbuffer, char *bufend) if ((msg_ptr = find_command(ch)) == NULL) { - /* + /* * Note: Give error message *only* to recognized * persons. It's a nightmare situation to have * two programs sending "Unknown command"'s or |