Package com.betfair.cougar.netutil.nio.message

Examples of com.betfair.cougar.netutil.nio.message.TLSResult


        }
        return sessionId;
    }

    public static boolean isSecure(IoSession session) {
        TLSResult result = (TLSResult) session.getAttribute(CougarProtocol.NEGOTIATED_TLS_LEVEL_ATTR_NAME);
        return result != null && result == TLSResult.SSL;
    }
View Full Code Here

TOP

Related Classes of com.betfair.cougar.netutil.nio.message.TLSResult

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.