File: ipmi_msg.h

package info (click to toggle)
openhpi 2.12.0-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 18,580 kB
  • ctags: 13,105
  • sloc: ansic: 177,276; cpp: 31,164; sh: 9,315; makefile: 4,463; perl: 1,529
file content (51 lines) | stat: -rw-r--r-- 1,192 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
 *
 * Copyright (c) 2003 by FORCE Computers
 *
 * Note that this file is based on parts of OpenIPMI
 * written by Corey Minyard <minyard@mvista.com>
 * of MontaVista Software. Corey's code was helpful
 * and many thanks go to him. He gave the permission
 * to use this code in OpenHPI under BSD license.
 *
 * This program 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.  This
 * file and program are licensed under a BSD style license.  See
 * the Copying file included with the OpenHPI distribution for
 * full licensing terms.
 *
 * Authors:
 *     Thomas Kanngieser <thomas.kanngieser@fci.com>
 */

#ifndef dIpmiMsg_h
#define dIpmiMsg_h


#ifndef dIpmiCmd_h
#include "ipmi_cmd.h"
#endif


#define dIpmiMaxMsgLength 80


class cIpmiMsg
{
public:
  tIpmiNetfn     m_netfn;
  tIpmiCmd       m_cmd;
  unsigned short m_data_len;
  unsigned char  m_data[dIpmiMaxMsgLength];

public:
  cIpmiMsg();
  cIpmiMsg( tIpmiNetfn netfn, tIpmiCmd cmd,
            unsigned short data_len = 0, unsigned char *data = 0 );

  bool Equal( const cIpmiMsg &msg2 ) const;
};


#endif