Added comment w.r.t. creation of secure connection inside the irc-api

library.
fix-message-formatting
Danny van Heumen 12 years ago
parent 95c4b9ae08
commit b7575680c6

@ -132,6 +132,11 @@ public void connect(String host, int port, String password,
final Exception[] exceptionContainer = new Exception[1];
this.irc = new IRCApiImpl(true);
// FIXME Currently, the secure connection is created by
// explicitly creating an SSLContext for 'SSL'. According
// to Ingo (in a mailing list conversation) it is better to
// use the CertificateService for this. This should be
// implemented in the irc-api library, though.
this.params.setServer(new IRCServer(host, port, password, secureConnection));
synchronized (this.irc)
{

Loading…
Cancel
Save