PlayerDCHandler.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:1k
源码类别:

游戏

开发平台:

Java

  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package net.sf.odinms.net.login.handler;
  6. import net.sf.odinms.client.MapleClient;
  7. import net.sf.odinms.net.AbstractMaplePacketHandler;
  8. import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;
  9. /**
  10.  *
  11.  * @author XoticStory.
  12.  * This handler makes sure the player is logged out
  13.  * Doing this ensures that we dont get the 'already logged in' thingo.
  14.  */
  15. public class PlayerDCHandler extends AbstractMaplePacketHandler {
  16.     @Override
  17.     public void handlePacket(SeekableLittleEndianAccessor slea, MapleClient c) {
  18.         /* Connection con = DatabaseConnection.getConnection();
  19.         try {
  20.         PreparedStatement ps = con.prepareStatement("UPDATE accounts SET loggedin WHERE name = ?");
  21.         ps.setString(1, c.getAccountName());
  22.         ps.executeUpdate();
  23.         ps.close();
  24.         } catch (SQLException se) {
  25.         }
  26.         }*/
  27.     }
  28. }