wpa_supplicant: Add optional remote access for ctrl_iface
Add new option for ctrl iface: CONFIG_CTRL_IFACE=udp-remote. This enables remote access to control interface via UDP port(s). This should be used for testing purpose only since there is no authentication or access control on the commands. Signed-hostap: Janusz Dziedzic <janusz.dziedzic@tieto.com>
This commit is contained in:
parent
37d428aef9
commit
afadf423db
5 changed files with 51 additions and 2 deletions
|
@ -1175,6 +1175,11 @@ endif
|
|||
ifeq ($(CONFIG_CTRL_IFACE), named_pipe)
|
||||
CFLAGS += -DCONFIG_CTRL_IFACE_NAMED_PIPE
|
||||
endif
|
||||
ifeq ($(CONFIG_CTRL_IFACE), udp-remote)
|
||||
CONFIG_CTRL_IFACE=udp
|
||||
CFLAGS += -DCONFIG_CTRL_IFACE_UDP
|
||||
CFLAGS += -DCONFIG_CTRL_IFACE_UDP_REMOTE
|
||||
endif
|
||||
OBJS += ctrl_iface.o ctrl_iface_$(CONFIG_CTRL_IFACE).o
|
||||
endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue