mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-19 11:09:25 +01:00
client: Use include path from top source directory
This commit is contained in:
parent
18c2c98ad5
commit
89e476d992
@ -26,10 +26,10 @@
|
||||
|
||||
#include <ell/ell.h>
|
||||
|
||||
#include "command.h"
|
||||
#include "dbus-proxy.h"
|
||||
#include "device.h"
|
||||
#include "display.h"
|
||||
#include "client/command.h"
|
||||
#include "client/dbus-proxy.h"
|
||||
#include "client/device.h"
|
||||
#include "client/display.h"
|
||||
|
||||
struct ad_hoc {
|
||||
bool started;
|
||||
|
@ -26,10 +26,10 @@
|
||||
|
||||
#include <ell/ell.h>
|
||||
|
||||
#include "command.h"
|
||||
#include "dbus-proxy.h"
|
||||
#include "display.h"
|
||||
#include "properties.h"
|
||||
#include "client/command.h"
|
||||
#include "client/dbus-proxy.h"
|
||||
#include "client/display.h"
|
||||
#include "client/properties.h"
|
||||
|
||||
struct adapter {
|
||||
bool powered;
|
||||
|
@ -27,9 +27,9 @@
|
||||
#include <ell/ell.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "agent.h"
|
||||
#include "dbus-proxy.h"
|
||||
#include "agent-manager.h"
|
||||
#include "client/agent.h"
|
||||
#include "client/dbus-proxy.h"
|
||||
#include "client/agent-manager.h"
|
||||
|
||||
#define IWD_AGENT_MANAGER_PATH "/net/connman/iwd"
|
||||
|
||||
|
@ -26,10 +26,10 @@
|
||||
|
||||
#include <ell/ell.h>
|
||||
|
||||
#include "agent.h"
|
||||
#include "dbus-proxy.h"
|
||||
#include "display.h"
|
||||
#include "command.h"
|
||||
#include "client/agent.h"
|
||||
#include "client/dbus-proxy.h"
|
||||
#include "client/display.h"
|
||||
#include "client/command.h"
|
||||
|
||||
#define IWD_AGENT_INTERFACE "net.connman.iwd.Agent"
|
||||
|
||||
|
@ -26,10 +26,10 @@
|
||||
|
||||
#include <ell/ell.h>
|
||||
|
||||
#include "command.h"
|
||||
#include "dbus-proxy.h"
|
||||
#include "device.h"
|
||||
#include "display.h"
|
||||
#include "client/command.h"
|
||||
#include "client/dbus-proxy.h"
|
||||
#include "client/device.h"
|
||||
#include "client/display.h"
|
||||
|
||||
struct ap {
|
||||
bool started;
|
||||
|
@ -31,8 +31,8 @@
|
||||
#include <ell/ell.h>
|
||||
#include <readline/readline.h>
|
||||
|
||||
#include "command.h"
|
||||
#include "display.h"
|
||||
#include "client/command.h"
|
||||
#include "client/display.h"
|
||||
|
||||
static struct l_queue *command_families;
|
||||
static struct l_queue *command_options;
|
||||
|
@ -27,11 +27,11 @@
|
||||
#include <stdio.h>
|
||||
#include <ell/ell.h>
|
||||
|
||||
#include "agent-manager.h"
|
||||
#include "dbus-proxy.h"
|
||||
#include "display.h"
|
||||
#include "command.h"
|
||||
#include "properties.h"
|
||||
#include "client/agent-manager.h"
|
||||
#include "client/dbus-proxy.h"
|
||||
#include "client/display.h"
|
||||
#include "client/command.h"
|
||||
#include "client/properties.h"
|
||||
|
||||
#define IWD_SERVICE "net.connman.iwd"
|
||||
#define IWD_ROOT_PATH "/"
|
||||
|
@ -26,12 +26,12 @@
|
||||
|
||||
#include <ell/ell.h>
|
||||
|
||||
#include "command.h"
|
||||
#include "dbus-proxy.h"
|
||||
#include "device.h"
|
||||
#include "display.h"
|
||||
#include "network.h"
|
||||
#include "properties.h"
|
||||
#include "client/command.h"
|
||||
#include "client/dbus-proxy.h"
|
||||
#include "client/device.h"
|
||||
#include "client/display.h"
|
||||
#include "client/network.h"
|
||||
#include "client/properties.h"
|
||||
|
||||
struct device {
|
||||
bool powered;
|
||||
|
@ -32,9 +32,9 @@
|
||||
#include <readline/readline.h>
|
||||
#include <ell/ell.h>
|
||||
|
||||
#include "agent.h"
|
||||
#include "command.h"
|
||||
#include "display.h"
|
||||
#include "client/agent.h"
|
||||
#include "client/command.h"
|
||||
#include "client/display.h"
|
||||
|
||||
#define IWD_PROMPT COLOR_GREEN "[iwd]" COLOR_OFF "# "
|
||||
#define LINE_LEN 81
|
||||
|
@ -29,11 +29,11 @@
|
||||
#include <time.h>
|
||||
#include <ell/ell.h>
|
||||
|
||||
#include "command.h"
|
||||
#include "dbus-proxy.h"
|
||||
#include "display.h"
|
||||
#include "properties.h"
|
||||
#include "network.h"
|
||||
#include "client/command.h"
|
||||
#include "client/dbus-proxy.h"
|
||||
#include "client/display.h"
|
||||
#include "client/properties.h"
|
||||
#include "client/network.h"
|
||||
|
||||
struct known_network {
|
||||
char *identity;
|
||||
|
@ -28,9 +28,9 @@
|
||||
#include <signal.h>
|
||||
#include <ell/ell.h>
|
||||
|
||||
#include "command.h"
|
||||
#include "display.h"
|
||||
#include "dbus-proxy.h"
|
||||
#include "client/command.h"
|
||||
#include "client/display.h"
|
||||
#include "client/dbus-proxy.h"
|
||||
|
||||
static void signal_handler(uint32_t signo, void *user_data)
|
||||
{
|
||||
|
@ -26,9 +26,9 @@
|
||||
|
||||
#include <ell/ell.h>
|
||||
|
||||
#include "dbus-proxy.h"
|
||||
#include "display.h"
|
||||
#include "network.h"
|
||||
#include "client/dbus-proxy.h"
|
||||
#include "client/display.h"
|
||||
#include "client/network.h"
|
||||
|
||||
struct network {
|
||||
bool connected;
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
#include <ell/ell.h>
|
||||
|
||||
#include "properties.h"
|
||||
#include "client/properties.h"
|
||||
|
||||
const char *properties_on_off_opts[3] = { "on", "off", NULL };
|
||||
const char *properties_yes_no_opts[3] = { "yes", "no", NULL };
|
||||
|
@ -26,11 +26,11 @@
|
||||
|
||||
#include <ell/ell.h>
|
||||
|
||||
#include "command.h"
|
||||
#include "dbus-proxy.h"
|
||||
#include "device.h"
|
||||
#include "network.h"
|
||||
#include "display.h"
|
||||
#include "client/command.h"
|
||||
#include "client/dbus-proxy.h"
|
||||
#include "client/device.h"
|
||||
#include "client/network.h"
|
||||
#include "client/display.h"
|
||||
|
||||
struct station {
|
||||
bool scanning;
|
||||
|
@ -26,10 +26,10 @@
|
||||
|
||||
#include <ell/ell.h>
|
||||
|
||||
#include "command.h"
|
||||
#include "dbus-proxy.h"
|
||||
#include "device.h"
|
||||
#include "display.h"
|
||||
#include "client/command.h"
|
||||
#include "client/dbus-proxy.h"
|
||||
#include "client/device.h"
|
||||
#include "client/display.h"
|
||||
|
||||
static struct proxy_interface_type wsc_interface_type = {
|
||||
.interface = IWD_WSC_INTERFACE,
|
||||
|
Loading…
Reference in New Issue
Block a user