1 /*
2    Copyright (C) 2003, 2005, 2006 MySQL AB, 2008 Sun Microsystems, Inc.
3     All rights reserved. Use is subject to license terms.
4 
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License, version 2.0,
7    as published by the Free Software Foundation.
8 
9    This program is also distributed with certain software (including
10    but not limited to OpenSSL) that is licensed under separate terms,
11    as designated in a particular file or component or in included license
12    documentation.  The authors of MySQL hereby grant you an additional
13    permission to link the program and your derivative works with the
14    separately licensed software that they have included with MySQL.
15 
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19    GNU General Public License, version 2.0, for more details.
20 
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
24 */
25 
26 #ifndef API_VERSION_HPP
27 #define API_VERSION_HPP
28 
29 #include "SignalData.hpp"
30 
31 class ApiVersionReq {
32 /**
33    * Sender(s)
34    */
35   friend class MgmtSrvr;
36 
37   /**
38    * Reciver(s)
39    */
40   friend class Qmgr;
41 
42   friend bool printAPI_VERSION_REQ(FILE *, const Uint32 *, Uint32, Uint16);
43 
44   STATIC_CONST( SignalLength = 4 );
45 
46   Uint32 senderRef;
47   Uint32 nodeId; //api node id
48   Uint32 version; // Version of API node
49   Uint32 mysql_version; // MySQL version
50 };
51 
52 
53 
54 class ApiVersionConf {
55 /**
56    * Sender(s)
57    */
58   friend class Qmgr;
59 
60   /**
61    * Reciver(s)
62    */
63   friend class MgmtSrvr;
64 
65   friend bool printAPI_VERSION_CONF(FILE *, const Uint32 *, Uint32, Uint16);
66 
67   STATIC_CONST( SignalLength = 5 );
68 
69   Uint32 senderRef;
70   Uint32 nodeId; //api node id
71   Uint32 version; // Version of API node
72   Uint32 inet_addr;
73   Uint32 mysql_version; // MySQL version
74 };
75 
76 #endif
77