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-20 18:52:26 +0200
commitb3c29ac52bfaef8f9bde17006553e55819a16ce6 (patch)
tree0a90dce7c97ca2b6c5a7fd83da1f25893358f0c2
parent282c657428a3f47d3b1e584ef455592da51362b1 (diff)
downloadtesting-slhttp/standalone-3.13-rc3.tar.gz
staging: slhttp: add a Kconfig entryslhttp/standalone-3.13-rc3
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/slhttp/Kconfig11
3 files changed, 14 insertions, 0 deletions
diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig
index 3bfdaa8d80a9cc..0d9076b36c05a1 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/slhttp/Kconfig"
+
endif # STAGING
diff --git a/drivers/staging/Makefile b/drivers/staging/Makefile
index b0d3303b46808f..52059a7b8e50e9 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_SLHTTP) += slhttp/
diff --git a/drivers/staging/slhttp/Kconfig b/drivers/staging/slhttp/Kconfig
new file mode 100644
index 00000000000000..2094f1fc455b76
--- /dev/null
+++ b/drivers/staging/slhttp/Kconfig
@@ -0,0 +1,11 @@
+config SLHTTP
+ tristate "Stateless HTTP Server"
+ depends on NETDEVICES
+ ---help---
+ This is a stress-testing tool which emulates an HTTP server, but
+ without maitaining 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 presents itself as a network
+ interface which responds to any TCP traffic sent to the networks
+ behind it. If you don't understand what all this is about, say N.
+