KeyPacket.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package com.l2jserver.gameserver.network.serverpackets;
  16. /**
  17. * This class ...
  18. *
  19. * @version $Revision: 1.3.2.1.2.3 $ $Date: 2005/03/27 15:29:57 $
  20. */
  21. public final class KeyPacket extends L2GameServerPacket
  22. {
  23. private static final String _S__01_KEYPACKET = "[S] 2e KeyPacket";
  24. private byte[] _key;
  25. private int _id;
  26. public KeyPacket(byte[] key, int id)
  27. {
  28. _key = key;
  29. _id = id;
  30. }
  31. @Override
  32. public void writeImpl()
  33. {
  34. writeC(0x2e);
  35. writeC(_id); //0 - wrong protocol, 1 - protocol ok
  36. for (int i = 0; i < 8; i++)
  37. {
  38. writeC(_key[i]); // key
  39. }
  40. writeD(0x01);
  41. writeD(0x01); // server id
  42. writeC(0x01);
  43. writeD(0x00); // obfuscation key
  44. }
  45. /* (non-Javadoc)
  46. * @see com.l2jserver.gameserver.serverpackets.L2GameServerPacket#getType()
  47. */
  48. @Override
  49. public String getType()
  50. {
  51. return _S__01_KEYPACKET;
  52. }
  53. }