From db679448bce45bc9c02790e2ae05fa2c8f2a4d24 Mon Sep 17 00:00:00 2001 From: Tim Kourt Date: Tue, 11 Apr 2017 14:31:52 -0700 Subject: [PATCH] client: Introduce command files The purpose of these files is to encapsulate all of the command processing functionality --- Makefile.am | 5 +++-- client/command.c | 42 ++++++++++++++++++++++++++++++++++++++++++ client/command.h | 24 ++++++++++++++++++++++++ 3 files changed, 69 insertions(+), 2 deletions(-) create mode 100644 client/command.c create mode 100644 client/command.h diff --git a/Makefile.am b/Makefile.am index a4bca090..b9b788a1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -87,8 +87,9 @@ dist_sysconf_DATA = src/iwd.conf client_iwctl_SOURCES = client/main.c \ readline/readline.h readline/history.h \ - client/display.h client/display.c \ - client/dbus-proxy.h client/dbus-proxy.c + client/command.h client/command.c \ + client/dbus-proxy.h client/dbus-proxy.c \ + client/display.h client/display.c client_iwctl_LDADD = ell/libell-internal.la -lreadline monitor_iwmon_SOURCES = monitor/main.c linux/nl80211.h \ diff --git a/client/command.c b/client/command.c new file mode 100644 index 00000000..b97f9f28 --- /dev/null +++ b/client/command.c @@ -0,0 +1,42 @@ +/* + * + * Wireless daemon for Linux + * + * Copyright (C) 2017 Intel Corporation. All rights reserved. + * + * 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, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include + +#include "command.h" + +static struct l_queue *command_families; + +void command_init(void) +{ + command_families = l_queue_new(); +} + +void command_exit(void) +{ + l_queue_destroy(command_families, NULL); + command_families = NULL; +} diff --git a/client/command.h b/client/command.h new file mode 100644 index 00000000..75502cde --- /dev/null +++ b/client/command.h @@ -0,0 +1,24 @@ +/* + * + * Wireless daemon for Linux + * + * Copyright (C) 2017 Intel Corporation. All rights reserved. + * + * 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, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +void command_init(void); +void command_exit(void);