You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Redo the SslOption integration into AmqpTcpEndpoint
After looking at the eventual integration into ConnectionFactory,
I've found it better to restructure things a bit differently so
that we create our SslOption very early on in the process and
just pass it down all the way to the SocketFrameHandler.
This commit does the following:
* Rename SslOption Property to Ssl, so we actually
create a Namespace, which allows us to do:
endpoint.Ssl.Enabled, endpoint.Ssl.Foo, etc
* Remove SslIsEnabled Property, it now resides inside
the SslOption object itself, and AmqpTcpEndpoint does
not concern itself with it anymore
* Remove the UseSsl() family of methods.
* Implement an overloaded constructor that accepts an SslOption
object.
* Reimplement the existing constructor in terms of the new constructor above,
so that by default, Ssl is disabled
0 commit comments