Package gwlpr.protocol.handshake.messages.P000_VerifyClient

Examples of gwlpr.protocol.handshake.messages.P000_VerifyClient.Payload


    @Event.Handler
    public void onHandshakeDone(HandShakeDoneEvent event)
    {
        LOGGER.debug("Got a new client to verify.");

        Payload verifyClient = event.getVerifyClient();

        // failcheck
        if (verifyClient == null) { return; }

        // check the server key
View Full Code Here

TOP

Related Classes of gwlpr.protocol.handshake.messages.P000_VerifyClient.Payload

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.