From cfb3e9525146d8c383e6e6d4a3b5bec7032e1573 Mon Sep 17 00:00:00 2001 From: Henning Rogge Date: Wed, 7 Jun 2017 21:49:05 +0200 Subject: [PATCH 1/1] Allow HTTP Plugin --- oonf-olsrd2/Config.in | 6 ++++++ oonf-olsrd2/Makefile | 1 + 2 files changed, 7 insertions(+) diff --git a/oonf-olsrd2/Config.in b/oonf-olsrd2/Config.in index 8af701c..1cc037a 100644 --- a/oonf-olsrd2/Config.in +++ b/oonf-olsrd2/Config.in @@ -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 diff --git a/oonf-olsrd2/Makefile b/oonf-olsrd2/Makefile index d77c530..aee6224 100644 --- a/oonf-olsrd2/Makefile +++ b/oonf-olsrd2/Makefile @@ -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 \ -- 2.30.2