diff --git a/server/parse.c b/server/parse.c index 8a6aee8..fb163cc 100644 --- a/server/parse.c +++ b/server/parse.c @@ -1,18 +1,18 @@ -/* - * parse.c - * This file is part of LCDd, the lcdproc server. - * - * This file is released under the GNU General Public License. Refer to the - * COPYING file distributed with this package. - * - * Copyright (c) 1999, William Ferrell, Scott Scriven - * - * +/** \file parse.c * Handles input commands from clients, by splitting strings into tokens * and passing arguments to the appropriate handler. * * It works much like a command line. Only the first token is used to * determine what function to call. + */ + +/* This file is part of LCDd, the lcdproc server. + * + * This file is released under the GNU General Public License. Refer to the + * COPYING file distributed with this package. + * + * Copyright (c) 1999, William Ferrell, Scott Scriven + * 2008, Peter Marschall * */ @@ -26,7 +26,7 @@ #include "clients.h" #include "commands/command_list.h" #include "parse.h" - +#include "sock.h" #define MAX_ARGUMENTS 40