aboutsummaryrefslogtreecommitdiffstats
path: root/src/ranch.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2012-05-31 15:34:53 +0200
committerLoïc Hoguin <[email protected]>2012-06-04 08:47:22 +0200
commit46ada7fff0bca928cca0d9d03cb0ef54b3232787 (patch)
tree40fcf68e364fa3497a55c23e019db673b61be7d7 /src/ranch.erl
parentc19a4b4f3c5b25d7b064fc58a90875b55df30aca (diff)
downloadranch-46ada7fff0bca928cca0d9d03cb0ef54b3232787.tar.gz
ranch-46ada7fff0bca928cca0d9d03cb0ef54b3232787.tar.bz2
ranch-46ada7fff0bca928cca0d9d03cb0ef54b3232787.zip
Add Transport:connect/3 and remove types unneeded by R15B+0.2.1
Also use one export per line to improve future diffs. Bump the version to 0.2.1 to reflect this change.
Diffstat (limited to 'src/ranch.erl')
-rw-r--r--src/ranch.erl8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/ranch.erl b/src/ranch.erl
index ab9d767..b6008fa 100644
--- a/src/ranch.erl
+++ b/src/ranch.erl
@@ -15,8 +15,12 @@
%% @doc Ranch API to start and stop listeners.
-module(ranch).
--export([start_listener/6, stop_listener/1, child_spec/6, accept_ack/1,
- get_protocol_options/1, set_protocol_options/2]).
+-export([start_listener/6]).
+-export([stop_listener/1]).
+-export([child_spec/6]).
+-export([accept_ack/1]).
+-export([get_protocol_options/1]).
+-export([set_protocol_options/2]).
%% @doc Start a listener for the given transport and protocol.
%%