diff options
Diffstat (limited to 'server/dispatcher.c')
-rw-r--r-- | server/dispatcher.c | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/server/dispatcher.c b/server/dispatcher.c index 94ae5569..c15a7a18 100644 --- a/server/dispatcher.c +++ b/server/dispatcher.c @@ -1,4 +1,24 @@ +/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +/* + Copyright (C) 2009-2012 Red Hat, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see <http://www.gnu.org/licenses/>. +*/ +#ifdef HAVE_CONFIG_H #include <config.h> +#endif + #include <unistd.h> #include <errno.h> #include <assert.h> @@ -7,8 +27,9 @@ #include <fcntl.h> #include <poll.h> -#include "mem.h" -#include "spice_common.h" +#include "common/mem.h" +#include "common/spice_common.h" + #include "dispatcher.h" #define DISPATCHER_DEBUG_PRINTF(level, ...) \ |