Uses of Class
org.opennms.protocols.icmpd.MessageHeader

Packages that use MessageHeader
org.opennms.protocols.icmpd   
 

Uses of MessageHeader in org.opennms.protocols.icmpd
 

Subclasses of MessageHeader in org.opennms.protocols.icmpd
 class CtrlCloseMessage
          Defines the control message for an orderly shutdown of the communications channel with the icmpd server.
 class CtrlFilterMessage
          Defines the control filter message for filtering received icmp messages from a remote host.
 class CtrlResponseMessage
          Defines the control message for an acknowldgement of the communications channel with the icmpd server.
 class CtrlResumeMessage
          Defines the control resume is used to inform the icmp daemon to begin sending ICMP messages to the client.
 class CtrlSuspendMessage
          Defines the control message for an orderly shutdown of the communications channel with the icmpd server.
 class DataRecvMessage
          The message class for receiving ICMP infomation from the icmp daemon.
 class DataSendMessage
          Defines the data send message for the transmission of an icmp message to a remote host.
 

Methods in org.opennms.protocols.icmpd that return MessageHeader
 MessageHeader DaemonConnection.recvMessage()
          Receives a message from the daemon and returns message header object.
 

Methods in org.opennms.protocols.icmpd with parameters of type MessageHeader
 void DaemonConnection.sendMessage(MessageHeader hdr)
          Sends the message to the icmp daemon.
 

Constructors in org.opennms.protocols.icmpd with parameters of type MessageHeader
MessageHeader(MessageHeader hdr)
          Creates a duplicate of the passed header.
CtrlResumeMessage(MessageHeader hdr)
          Creates a new object based on the fields in the header.
CtrlResponseMessage(MessageHeader hdr)
          creates a default message based upon the header
DataRecvMessage(MessageHeader hdr, InputStream istream)
          Constructs a new data recevied object with the specified header and reads the remaining information from the input stream.
DataSendMessage(MessageHeader hdr, InputStream istream)
          Constructs a new object with the passed header and reads the remaining information from the passed input stream.
CtrlCloseMessage(MessageHeader hdr)
          Constructs a control close message using the values specified in the header.
CtrlFilterMessage(MessageHeader hdr, InputStream istream)
          Creates a new control filter message based on the message header and the input stream.
CtrlSuspendMessage(MessageHeader hdr)
          Creates a new object based on the fields in the header.