aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilly Tarreau <w@1wt.eu>2013-12-08 23:41:47 +0100
committerWilly Tarreau <w@1wt.eu>2016-09-21 09:28:07 +0200
commit715072b4e4c88d7c684e00542eaa0d3a8088e6c4 (patch)
treeb5f6f8f1e940a9e8951ff676534c16bc6165d6b9
parentf517c1f61784ffc8685e912e15c89a1558c6b38e (diff)
downloadndiv-v4-3.13-iobarrier-ixgbe-slhttpd.tar.gz
staging: slhttpd: add a Kconfig entryv4-3.13-iobarrier-ixgbe-slhttpd
Signed-off-by: Willy Tarreau <w@1wt.eu>
-rw-r--r--drivers/staging/Kconfig2
-rw-r--r--drivers/staging/Makefile1
-rw-r--r--drivers/staging/slhttpd/Kconfig10
3 files changed, 13 insertions, 0 deletions
diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig
index 3bfdaa8d80a9cc..8b4eb220f80b96 100644
--- a/drivers/staging/Kconfig
+++ b/drivers/staging/Kconfig
@@ -150,4 +150,6 @@ source "drivers/staging/dgnc/Kconfig"
source "drivers/staging/dgap/Kconfig"
+source "drivers/staging/slhttpd/Kconfig"
+
endif # STAGING
diff --git a/drivers/staging/Makefile b/drivers/staging/Makefile
index b0d3303b46808f..67587665cbc483 100644
--- a/drivers/staging/Makefile
+++ b/drivers/staging/Makefile
@@ -67,3 +67,4 @@ obj-$(CONFIG_XILLYBUS) += xillybus/
obj-$(CONFIG_DGNC) += dgnc/
obj-$(CONFIG_DGAP) += dgap/
obj-$(CONFIG_MTD_SPINAND_MT29F) += mt29f_spinand/
+obj-$(CONFIG_SLHTTPD) += slhttpd/
diff --git a/drivers/staging/slhttpd/Kconfig b/drivers/staging/slhttpd/Kconfig
new file mode 100644
index 00000000000000..16dc1692beaafd
--- /dev/null
+++ b/drivers/staging/slhttpd/Kconfig
@@ -0,0 +1,10 @@
+config SLHTTPD
+ tristate "Stateless HTTP Server"
+ depends on NETDEVICES
+ ---help---
+ This is a stress-testing tool which emulates an HTTP server, but
+ without maintaining any internal state. It only relies on the ACKs
+ sent by the client. It achieves higher speeds than user-space servers
+ but lacks a number of controls. It works with the ndiv framework and
+ is meant to be used on a separate machine (so it will not respond to
+ local clients). If you don't understand what all this is about, say N.