diff --git a/httpbin/templates/httpbin.1.html b/httpbin/templates/httpbin.1.html index f858286..e57296c 100644 --- a/httpbin/templates/httpbin.1.html +++ b/httpbin/templates/httpbin.1.html @@ -29,8 +29,8 @@
  • /basic-auth/:user/:passwd Challenges HTTPBasic Auth.
  • /hidden-basic-auth/:user/:passwd 404'd BasicAuth.
  • /digest-auth/:qop/:user/:passwd Challenges HTTP Digest Auth.
  • -
  • /stream/:n Streams n–100 lines.
  • -
  • /delay/:n Delays responding for n–10 seconds.
  • +
  • /stream/:n Streams min(n, 100) lines.
  • +
  • /delay/:n Delays responding for min(n, 10) seconds.
  • /drip?numbytes=n&duration=s&delay=s&code=code Drips data over a duration after an optional initial delay, then (optionally) returns with the given status code.
  • /range/1024?duration=s&chunk_size=code Streams n bytes, and allows specifying a Range header to select a subset of the data. Accepts a chunk_size and request duration parameter.
  • /html Renders an HTML Page.