123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /*
- * This file is part of UAS2.
- *
- * UAS2 is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * UAS2 is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
-
- * You should have received a copy of the GNU General Public License
- * along with UASv1; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
- /**
- * @file CannedPackets.h
- */
-
- #ifndef __CANNEDPACKETS_H
- #define __CANNEDPACKETS_H
-
- #include <winsock2.h>
-
- static BYTE SERVER_Packet100[90] = {
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xD8, 0x46, 0x90, 0x4B, 0x51, 0x00, 0x00, 0x00,
- 0x46, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x20, 0x00, 0x20, 0x3C, 0x00, 0x00, 0x00, 0x88, 0x77,
- 0x66, 0x33, 0x08, 0x00, 0x00, 0x00, 0xFB, 0x63, 0xC5, 0x08, 0x16, 0xC7, 0x80, 0x31, 0xFF, 0x43,
- 0xE5, 0xFE, 0x8A, 0xF3, 0xE3, 0x69, 0x23, 0xCF, 0xF8, 0x82, 0xB9, 0xC4, 0x59, 0x80, 0x99, 0x30,
- 0xB6, 0x08, 0xE5, 0xC2, 0x80, 0xDD, 0xBB, 0xAD, 0xCD, 0xAD, 0x03, 0x00, 0x00, 0x00, 0x00, 0x5B,
- 0x67, 0xF4, 0x36, 0x69, 0xB7, 0xD8, 0x85, 0x48, 0xDF, 0xBB
- };
-
- static BYTE SERVER_Packet400[28] = {
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xFB, 0xE5, 0x99, 0xB7, 0x51, 0x00, 0x00, 0x00,
- 0x08, 0x00, 0x00, 0x00, 0xFB, 0x9B, 0x18, 0xBB, 0xE6, 0xD4, 0x8F, 0x41,
- };
-
- static BYTE MSG_00000002[16] = {
- 0x4B, 0xF7, 0x00, 0x00, 0x56, 0x1F, 0x05, 0x50, 0x08, 0x04, 0x40, 0x00, 0x3C, 0x00, 0x02, 0x00
- };
-
- static BYTE ANM[32] = {
- 0x4C, 0xF7, 0x00, 0x00, 0x81, 0x21, 0x02, 0x50, 0xE4, 0x04, 0x04, 0x00, 0x03, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x3D, 0x00, 0x80, 0x00, 0x00, 0x00, 0x85, 0x00, 0x03, 0x00, 0x00, 0x00, 0x80, 0x3F,
- };
-
- #endif // #ifndef __CANNEDPACKETS_H
|