client: Introduce command files

The purpose of these files is to encapsulate all of
the command processing functionality
This commit is contained in:
Tim Kourt 2017-04-11 14:31:52 -07:00 committed by Denis Kenzior
parent f5cb1d46bd
commit db679448bc
3 changed files with 69 additions and 2 deletions

View File

@ -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 \

42
client/command.c Normal file
View File

@ -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 <config.h>
#endif
#include <ell/ell.h>
#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;
}

24
client/command.h Normal file
View File

@ -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);