Package net.sf.cindy.filter

Examples of net.sf.cindy.filter.SSLFilter


    private static void startSession(Session session) {
        session.setPacketDecoder(decoder);
        session.setPacketEncoder(encoder);
        session.setSessionHandler(handler);
        if (sslc != null) {
            SSLFilter filter = new SSLFilter(sslc);
            filter.setClientMode(false);
            session.addSessionFilter(filter);
        }
        session.start();
    }
View Full Code Here

TOP

Related Classes of net.sf.cindy.filter.SSLFilter

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.