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


Public Member Functions | |
| RESIP_HeapCount (ConnectionPingStarted) | |
| KeepAlivePong (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 KeepAlivePong.hxx.
| resip::KeepAlivePong::KeepAlivePong | ( | const Tuple & | flow | ) | [inline] |
| virtual Message* resip::KeepAlivePong::clone | ( | ) | const [inline, virtual] |
Reimplemented from resip::TransactionMessage.
Definition at line 22 of file KeepAlivePong.hxx.
References KeepAlivePong(), and mFlow.
Referenced by resip::TuSelector::add().
{ return new KeepAlivePong(mFlow); }

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

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