Allow HTTP Plugin

This commit is contained in:
Henning Rogge 2017-06-07 21:49:05 +02:00
parent 71d0a0b58a
commit cfb3e95251
2 changed files with 7 additions and 0 deletions

View File

@ -32,6 +32,12 @@
The remotecontrol plugin allows you to control configuration and logging over the telnet plugin. Be careful not to open this functionality over the network without securing it.
default n
config OONF_GENERIC_HTTP
bool "http plugin enabled"
help
The HTTP plugin allows HTTP access to all telnet commands.
default n
config OONF_OLSRV2_MPR
bool "MPR plugin enabled"
help

View File

@ -25,6 +25,7 @@ CMAKE_OPTIONAL_PLUGINS:= $(subst $(SPACE),;,$(strip \
$(if $(filter y,$(CONFIG_OONF_GENERIC_DLEP_ROUTER)),dlep_router,) \
$(if $(filter y,$(CONFIG_OONF_GENERIC_REMOTECONTROL)),remotecontrol,) \
$(if $(filter y,$(CONFIG_OONF_OLSRV2_MPR)),mpr,) \
$(if $(filter y,$(OONF_GENERIC_HTTP)),http,) \
))
CMAKE_OPTIONS=-D OONF_NO_WERROR:Bool=true \