Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P001_PingRequest


     *
     * @param channel
     */
    public static void pingRequest(Channel channel)
    {
        P001_PingRequest ping = new P001_PingRequest();
        ping.init(channel);
       
        channel.writeAndFlush(ping);
    }
View Full Code Here

TOP

Related Classes of gwlpr.protocol.gameserver.outbound.P001_PingRequest

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.