|
reSIProcate/stack
9694
|
#include <ConnectionTerminated.hxx>


Public Member Functions | |
| RESIP_HeapCount (ConnectionTerminated) | |
| ConnectionTerminated (const Tuple &flow) | |
| virtual const Data & | getTransactionId () const |
| virtual bool | isClientTransaction () const |
| virtual Message * | clone () const |
| virtual EncodeStream & | encode (EncodeStream &strm) const |
| output the entire message to stream | |
| virtual EncodeStream & | encodeBrief (EncodeStream &str) const |
| output a brief description to stream | |
| FlowKey | getFlowKey () const |
| const Tuple & | getFlow () const |
Private Attributes | |
| const Tuple | mFlow |
Definition at line 11 of file ConnectionTerminated.hxx.
| resip::ConnectionTerminated::ConnectionTerminated | ( | const Tuple & | flow | ) | [inline] |
| virtual Message* resip::ConnectionTerminated::clone | ( | ) | const [inline, virtual] |
Reimplemented from resip::TransactionMessage.
Definition at line 22 of file ConnectionTerminated.hxx.
References ConnectionTerminated(), and mFlow.
Referenced by resip::TuSelector::add().
{ return new ConnectionTerminated(mFlow); }

| virtual EncodeStream& resip::ConnectionTerminated::encode | ( | EncodeStream & | strm | ) | const [inline, virtual] |
output the entire message to stream
Implements resip::Message.
Definition at line 23 of file ConnectionTerminated.hxx.
References encodeBrief(), and EncodeStream.
{ return encodeBrief(strm); }

| virtual EncodeStream& resip::ConnectionTerminated::encodeBrief | ( | EncodeStream & | str | ) | const [inline, virtual] |
output a brief description to stream
Implements resip::Message.
Definition at line 24 of file ConnectionTerminated.hxx.
References EncodeStream, and mFlow.
Referenced by encode().
{
return str << "ConnectionTerminated " << mFlow;
}
| const Tuple& resip::ConnectionTerminated::getFlow | ( | ) | const [inline] |
Definition at line 34 of file ConnectionTerminated.hxx.
References mFlow.
Referenced by resip::TransactionState::process().
{
return mFlow;
}
| FlowKey resip::ConnectionTerminated::getFlowKey | ( | ) | const [inline] |
Definition at line 29 of file ConnectionTerminated.hxx.
References mFlow, and resip::Tuple::mFlowKey.
{
return mFlow.mFlowKey;
}
| virtual const Data& resip::ConnectionTerminated::getTransactionId | ( | ) | const [inline, virtual] |
Implements resip::TransactionMessage.
Definition at line 20 of file ConnectionTerminated.hxx.
References resip::Data::Empty.
{ assert(0); return Data::Empty; }
| virtual bool resip::ConnectionTerminated::isClientTransaction | ( | ) | const [inline, virtual] |
Implements resip::TransactionMessage.
Definition at line 21 of file ConnectionTerminated.hxx.
{ assert(0); return false; }
| resip::ConnectionTerminated::RESIP_HeapCount | ( | ConnectionTerminated | ) |
const Tuple resip::ConnectionTerminated::mFlow [private] |
Definition at line 40 of file ConnectionTerminated.hxx.
Referenced by clone(), encodeBrief(), getFlow(), and getFlowKey().
1.7.5.1