Package org.pircbotx

Examples of org.pircbotx.UtilSSLSocketFactory


            this.setWebIrcPassword(webIrcPassword);
        }

        if (getPlugin().getConfig().getBoolean("server.ssl.enabled", false)) {
            if (getPlugin().getConfig().getBoolean("server.ssl.trust", false)) {
                socketFactory = new UtilSSLSocketFactory().trustAllCertificates();
            } else {
                socketFactory = new UtilSSLSocketFactory();
            }
        }

        if (!isConnected()) {
            if (getServer() == null) {
View Full Code Here

TOP

Related Classes of org.pircbotx.UtilSSLSocketFactory

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.