Skip to content

Commit

Permalink
Add support for specifying the ciphers for the SSL transport
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali Sabil committed Mar 21, 2012
1 parent 98c5828 commit 9ac784d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/cowboy_ssl_transport.erl
Expand Up @@ -76,6 +76,7 @@ listen(Opts) ->
({keyfile, _} = KeyFile, Acc) -> [KeyFile | Acc];
({password, _} = Password, Acc) -> [Password | Acc];
({cacertfile, _} = CACertFile, Acc) -> [CACertFile | Acc];
({ciphers, _} = Ciphers, Acc) -> [Ciphers | Acc];
(_, Acc) -> Acc
end, ListenOpts0, Opts),
ssl:listen(Port, ListenOpts).
Expand Down

0 comments on commit 9ac784d

Please sign in to comment.