Examples of IPv4Filter


Examples of com.l2jfrozen.util.IPv4Filter

  private IPv4Filter _ipv4filter;
 
  public SelectorHelper()
  {
    _generalPacketsThreadPool = new ThreadPoolExecutor(4, 6, 15L, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>());
    _ipv4filter = new IPv4Filter();
  }
View Full Code Here

Examples of com.l2jfrozen.util.IPv4Filter

    sc.SLEEP_TIME = com.l2jfrozen.netcore.Config.getInstance().MMO_SELECTOR_SLEEP_TIME;
    sc.HELPER_BUFFER_COUNT = com.l2jfrozen.netcore.Config.getInstance().MMO_HELPER_BUFFER_COUNT;
   
    _gamePacketHandler = new L2GamePacketHandler();
   
    _selectorThread = new SelectorThread<L2GameClient>(sc, _gamePacketHandler, _gamePacketHandler, _gamePacketHandler, new IPv4Filter());
   
    InetAddress bindAddress = null;
    if (!Config.GAMESERVER_HOSTNAME.equals("*"))
    {
      try
 
View Full Code Here

Examples of net.sf.l2j.gameserver.util.IPv4Filter

    sc.SLEEP_TIME = 20; //Config.MMO_SELECTOR_SLEEP_TIME;
    sc.HELPER_BUFFER_COUNT = 20; //Config.MMO_HELPER_BUFFER_COUNT;
    sc.TCP_NODELAY = false; //Config.MMO_TCP_NODELAY;
   
    L2GamePacketHandler gph = new L2GamePacketHandler();
    _selectorThread = new SelectorThread<L2GameClient>(sc, gph, gph, gph, new IPv4Filter());
    InetAddress bindAddress = null;
    if (!Config.GAMESERVER_HOSTNAME.equals("*"))
    {
      try
      {
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.