Package com.ensifera.animosity.craftirc.libs.org.jibble.pircbot

Examples of com.ensifera.animosity.craftirc.libs.org.jibble.pircbot.TrustingSSLSocketFactory


    void connectToIrc() {
        final String serverDescription = this.ircServer + ":" + this.ircPort + ((this.ssl) ? " [SSL]" : "");
        this.plugin.log("Connecting to " + serverDescription);
        try {
            if (this.ssl) {
                this.connect(this.ircServer, this.ircPort, this.ircPass, new TrustingSSLSocketFactory());
            } else {
                this.connect(this.ircServer, this.ircPort, this.ircPass);
            }
        } catch (final ConnectException e) {
            e.printStackTrace();
View Full Code Here

TOP

Related Classes of com.ensifera.animosity.craftirc.libs.org.jibble.pircbot.TrustingSSLSocketFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.