Package | Description |
---|---|
com.veraxsystems.vximpi.test | |
com.veraxsystems.vxipmi.api.async |
The asynchronous API.
|
com.veraxsystems.vxipmi.api.sync |
The synchronous API.
|
com.veraxsystems.vxipmi.coding |
The part of library responsible for message encoding and decoding.
|
com.veraxsystems.vxipmi.coding.commands.chassis |
Chassis related commands.
|
com.veraxsystems.vxipmi.coding.commands.fru |
FRU related commands.
|
com.veraxsystems.vxipmi.coding.commands.sdr |
SDR related commands.
|
com.veraxsystems.vxipmi.coding.commands.sel |
SEL related commands.
|
com.veraxsystems.vxipmi.coding.commands.session |
Session management relsted commands.
|
com.veraxsystems.vxipmi.connection |
Package responsible for
Connection management. |
com.veraxsystems.vxipmi.connection.queue |
Package responsible for message queuing.
|
com.veraxsystems.vxipmi.sm.events |
The
StateMachine events. |
Constructor and Description |
---|
Listener(CipherSuite cipherSuite,
IpmiCommandCoder commandCoder) |
Modifier and Type | Method and Description |
---|---|
int |
IpmiAsyncConnector.sendMessage(ConnectionHandle connectionHandle,
IpmiCommandCoder request)
Sends the IPMI message to the remote host.
|
Modifier and Type | Method and Description |
---|---|
ResponseData |
IpmiConnector.sendMessage(ConnectionHandle connectionHandle,
IpmiCommandCoder request)
Sends the IPMI message to the remote host.
|
Modifier and Type | Method and Description |
---|---|
static ResponseData |
Decoder.decode(byte[] data,
IpmiDecoder protocolDecoder,
IpmiCommandCoder commandCoder)
Decodes raw data into
ResponseData - a wrapper class for
message-specific response data. |
static byte[] |
Encoder.encode(IpmiEncoder protcolEncoder,
IpmiCommandCoder commandCoder,
int sequenceNumber,
int sessionId)
Encodes IPMI command specified by commandCoder into byte array raw data.
|
Modifier and Type | Class and Description |
---|---|
class |
ChassisControl
Wrapper class for Chassis Control request.
|
class |
GetChassisStatus
Wrapper class for Get Chassis Status request.
|
Modifier and Type | Class and Description |
---|---|
class |
GetFruInventoryAreaInfo
A wrapper class for Get FRU Inventory Area Info Command.
|
class |
ReadFruData
A wrapper class for Read FRU Data Command request.
|
Modifier and Type | Class and Description |
---|---|
class |
GetSdr
Wrapper for Get SDR command.
|
class |
GetSdrRepositoryInfo
A wrapper class for Get SDR Repository Info Command.
|
class |
GetSensorReading
Wrapper for Get Sensor Reading request.
|
class |
ReserveSdrRepository
Wrapper for Reserve SDR Repository command.
|
Modifier and Type | Class and Description |
---|---|
class |
GetSelEntry
Wrapper for Get Sel Entry request
|
class |
GetSelInfo
Wrapper class for Get SEL Info request.
|
class |
ReserveSel
Wrapper for Reserve SEL command.
|
Modifier and Type | Class and Description |
---|---|
class |
CloseSession
Wrapper for Close Session request
|
class |
GetChannelAuthenticationCapabilities
Wrapper for Get Channel Authentication Capabilities request
|
class |
GetChannelCipherSuites
Wrapper for RMCP+ Get Channel Cipher Suites command.
|
class |
OpenSession
Wrapper class for RMCP+ Open Session request.
|
class |
Rakp1
A wrapper for RMCP+ RAKP1 message and it's response - RAKP2 message.
|
class |
Rakp3
A wrapper for RMCP+ RAKP3 message and it's response - RAKP4 message.
|
class |
SetSessionPrivilegeLevel
Wrapper class for Set Session Privilege Level command
|
Modifier and Type | Method and Description |
---|---|
int |
Connection.sendIpmiCommand(IpmiCommandCoder commandCoder)
Attempts to send IPMI request to the managed system.
|
Modifier and Type | Method and Description |
---|---|
IpmiCommandCoder |
MessageQueue.getMessageFromQueue(int tag)
Returns message with the given sequence number from the queue or null if
no message with the given tag is currently in the queue.
|
IpmiCommandCoder |
QueueElement.getRequest() |
Modifier and Type | Method and Description |
---|---|
int |
MessageQueue.add(IpmiCommandCoder request)
Adds request to the queue and generates the tag.
|
void |
QueueElement.setRequest(IpmiCommandCoder request) |
Constructor and Description |
---|
QueueElement(int id,
IpmiCommandCoder request) |
Modifier and Type | Method and Description |
---|---|
IpmiCommandCoder |
Sendv20Message.getCommandCoder() |
Constructor and Description |
---|
Sendv20Message(IpmiCommandCoder ipmiCommandCoder,
int sessionId,
int sequenceNumber)
Prepares an event for
StateMachine that will perform sending an
IPMI command in v2.0 format. |