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 52 53 54 55 56 57 58 59 60 61 62 63 64
|
/*
*
* Copyright (c) 2003 by FORCE Computers.
*
* 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>
*/
#include "ipmi_addr.h"
#include "ipmi_log.h"
#include <errno.h>
int
cIpmiAddr::Cmp( const cIpmiAddr &addr ) const
{
int v = (int)addr.m_type - (int)m_type;
if ( v )
return v;
v = (int)addr.m_channel - (int)m_channel;
if ( v )
return v;
v = (int)addr.m_lun - (int)m_lun;
if ( v )
return v;
v = (int)addr.m_slave_addr - (int)m_slave_addr;
return v;
}
void
cIpmiAddr::Log() const
{
switch( m_type )
{
case eIpmiAddrTypeSystemInterface:
stdlog << "si <" << m_channel << " " << m_lun << ">";
break;
case eIpmiAddrTypeIpmb:
stdlog << "ipmb <" << m_channel << " " << m_lun << " "
<< (unsigned char)m_slave_addr << ">";
break;
case eIpmiAddrTypeIpmbBroadcast:
stdlog << "bc <" << m_channel << " " << m_lun << " "
<< (unsigned char)m_slave_addr << ">";
break;
}
}
|