about summary refs log tree commit homepage
path: root/examples/echo.ru
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-07-01 15:16:49 -0700
committerEric Wong <normalperson@yhbt.net>2009-07-01 15:16:49 -0700
commit90c0e4666185f29d3484c12ea6d451fcac528376 (patch)
treeed743318fd0a1e4b75c7afc5f98ea0c2343f08d1 /examples/echo.ru
parent06bf73975864b8e16ef1ee977f8424a0e5517fd6 (diff)
downloadunicorn-90c0e4666185f29d3484c12ea6d451fcac528376.tar.gz
Now that upstream curl supports this functionality, there's
no reason to duplicate it here as an example.
Diffstat (limited to 'examples/echo.ru')
-rw-r--r--examples/echo.ru3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/echo.ru b/examples/echo.ru
index ebc4d9d..322fe94 100644
--- a/examples/echo.ru
+++ b/examples/echo.ru
@@ -1,9 +1,10 @@
 #\-E none
+#
 # Example application that echoes read data back to the HTTP client.
 # This emulates the old echo protocol people used to run.
 #
 # An example of using this in a client would be to run:
-#   curl -NT- http://host:port/
+#   curl --no-buffer -T- http://host:port/
 #
 # Then type random stuff in your terminal to watch it get echoed back!