init_protocol.h
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 1998,1999  Ross Combs (rocombs@cs.nmsu.edu)
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #ifndef INCLUDED_INIT_PROTOCOL_TYPES
  19. #define INCLUDED_INIT_PROTOCOL_TYPES
  20. #ifdef JUST_NEED_TYPES
  21. # include "common/bn_type.h"
  22. #else
  23. # define JUST_NEED_TYPES
  24. # include "common/bn_type.h"
  25. # undef JUST_NEED_TYPES
  26. #endif
  27. /* There is no header for this packet class and there is only
  28.  * one packet type.
  29.  */
  30. /*
  31.  * There is a single byte sent upon initial connections that
  32.  * reports the connection type.
  33.  */
  34. /******************************************************/
  35. #define CLIENT_INITCONN 0x1
  36. typedef struct
  37. {
  38.     bn_byte class;
  39. } t_client_initconn PACKED_ATTR();
  40. /******************************************************/
  41. #endif
  42. /*****/
  43. #ifndef JUST_NEED_TYPES
  44. #ifndef INCLUDED_INIT_PROTOCOL_PROTOS
  45. #define INCLUDED_INIT_PROTOCOL_PROTOS
  46. #define CLIENT_INITCONN_CLASS_DEFER  0x01 /* great... means either "bnet protocol" or "auth protocol" */
  47. #define CLIENT_INITCONN_CLASS_FILE   0x02
  48. #define CLIENT_INITCONN_CLASS_BOT    0x03
  49. #define CLIENT_INITCONN_CLASS_ENC    0x04 /* encrypted connection */
  50. #define CLIENT_INITCONN_CLASS_TELNET 0x0d /* Hack alert: look for user to hit r when they connect */
  51. #define CLIENT_INITCONN_CLASS_D2CS   0x01
  52. #define CLIENT_INITCONN_CLASS_D2GS   0x64
  53. #define CLIENT_INITCONN_CLASS_D2CS_BNETD   0x65
  54. #endif
  55. #endif