Skip to content

Commit 6d933e4

Browse files
authored
Merge pull request #607 from eperazzo/0.8
Add support for the 'ciphers' ssl option
2 parents b0867d8 + 9a568b9 commit 6d933e4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pkg/amqp-lib/AmqpConnectionFactory.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ private function establishConnection()
9494
'verify_peer' => $this->config->isSslVerify(),
9595
'verify_peer_name' => $this->config->isSslVerify(),
9696
'passphrase' => $this->getConfig()->getSslPassPhrase(),
97+
'ciphers' => $this->config->getOption('ciphers', ''),
9798
], function ($value) { return '' !== $value; });
9899

99100
$con = new AMQPSSLConnection(

0 commit comments

Comments
 (0)