Package marauroa.common.net.message

Examples of marauroa.common.net.message.MessageS2CConnectNACK


      logger.debug("Reject connection from banned IP: " + socket.getInetAddress());

      /*
       * Sends a connect NACK message if the address is banned.
       */
      MessageS2CConnectNACK msg = new MessageS2CConnectNACK();
      msg.setSocketChannel(channel);
      sendMessage(msg);

      /*
       * NOTE: We should wait a bit to close the channel... to make sure
       * message is sent *before* closing it, otherwise client won't know
View Full Code Here

TOP

Related Classes of marauroa.common.net.message.MessageS2CConnectNACK

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.