From 7bdd710849a35c12afe3f91bc5df4006db4c0282 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sun, 6 Mar 2016 17:48:35 +0100 Subject: Completely remove SPDY --- doc/src/manual/cowboy.asciidoc | 10 --------- doc/src/manual/cowboy_spdy.asciidoc | 42 ------------------------------------- 2 files changed, 52 deletions(-) delete mode 100644 doc/src/manual/cowboy_spdy.asciidoc (limited to 'doc/src/manual') diff --git a/doc/src/manual/cowboy.asciidoc b/doc/src/manual/cowboy.asciidoc index cd83b3d..10e3696 100644 --- a/doc/src/manual/cowboy.asciidoc +++ b/doc/src/manual/cowboy.asciidoc @@ -67,16 +67,6 @@ ProtoOpts = cowboy_protocol:opts():: HTTP protocol options. Start listening for HTTPS connections. Returns the pid for this listener's supervisor. -=== start_spdy(Ref, NbAcceptors, TransOpts, ProtoOpts) -> {ok, pid()} - -Ref = ranch:ref():: Listener name. -NbAcceptors = non_neg_integer():: Number of acceptor processes. -TransOpts = ranch_ssl:opts():: SSL transport options. -ProtoOpts = cowboy_spdy:opts():: SPDY protocol options. - -Start listening for SPDY connections. Returns the pid for this -listener's supervisor. - === stop_listener(Ref) -> ok | {error, not_found} Ref = ranch:ref():: Listener name. diff --git a/doc/src/manual/cowboy_spdy.asciidoc b/doc/src/manual/cowboy_spdy.asciidoc deleted file mode 100644 index b0dcb70..0000000 --- a/doc/src/manual/cowboy_spdy.asciidoc +++ /dev/null @@ -1,42 +0,0 @@ -= cowboy_spdy(3) - -== Name - -cowboy_spdy - SPDY protocol - -== Description - -The `cowboy_spdy` module implements SPDY/3 as a Ranch protocol. - -== Types - -=== opts() = [Option] - -[source,erlang] ----- -Option = {env, cowboy_middleware:env()} - | {middlewares, [module()]} - | {onresponse, cowboy:onresponse_fun()} ----- - -Configuration for the SPDY protocol handler. - -This configuration is passed to Cowboy when starting listeners -using the `cowboy:start_spdy/4` function. - -It can be updated without restarting listeners using the -Ranch functions `ranch:get_protocol_options/1` and -`ranch:set_protocol_options/2`. - -== Option descriptions - -The default value is given next to the option name. - -env ([{listener, Ref}]):: - Initial middleware environment. - -middlewares ([cowboy_router, cowboy_handler]):: - List of middlewares to execute for every requests. - -onresponse (undefined):: - Fun called every time a response is sent. -- cgit v1.2.3