summaryrefslogtreecommitdiff
path: root/src/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/client.c')
-rw-r--r--src/client.c32
1 files changed, 25 insertions, 7 deletions
diff --git a/src/client.c b/src/client.c
index 3745195..b748541 100644
--- a/src/client.c
+++ b/src/client.c
@@ -1,15 +1,33 @@
/**
* @file
- * @section DESCRIPTION
- * This module creates the client representation within the server and manages the client representation. Client is in some ways a misleading name; it is not the client, and is instead purely in the server.
- * It does support the following interfaces:
+ * @section AUTHORS
+ *
+ * Copyright (C) 2004-2005 Norman Feske <nf2@os.inf.tu-dresden.de>
+ *
+ * Authors:
+ * Eamon Walsh <ewalsh@tycho.nsa.gov>
+ * Norman Feske <nf2@inf.tu-dresden.de>
+ *
+ * @section LICENSE
*
+ * 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
+ * the Free Software Foundation; under version 2 of the License.
*
- * client *add_client
- * void remove_client
- * client *find_client
- * int nitpicker_initialize_client
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * @section DESCRIPTION
*
+ * This is the implementation of client objects, which represent remote
+ * entities that will provide us with buffer and view objects. In Linpicker,
+ * there is a one-to-one mapping between client objects and domains.
*/
#include <sys/types.h>