Skip to content

Commit

Permalink
Add 'ciphers' ssl option as defined in http://php.net/manual/en/conte…
Browse files Browse the repository at this point in the history
…xt.ssl.php. It can now be passed through driver_options
  • Loading branch information
Eric Perazzo committed Nov 1, 2018
1 parent a47f72f commit 68dfde8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions AmqpConnectionFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ private function establishConnection()
'verify_peer' => $this->config->isSslVerify(),
'verify_peer_name' => $this->config->isSslVerify(),
'passphrase' => $this->getConfig()->getSslPassPhrase(),
'ciphers' => $this->config->getOption('ciphers', ''),
], function ($value) { return '' !== $value; });

$con = new AMQPSSLConnection(
Expand Down

0 comments on commit 68dfde8

Please sign in to comment.