|
reSIProcate/stack
9694
|
Allows sending of arbitrarily badly formed messages. More...
#include <TestSupport.hxx>


Public Member Functions | |
| SipRawMessage (const SipMessage &carrier, const Data &rawMessage) | |
| Data & | raw () const |
| virtual EncodeStream & | encode (EncodeStream &str) const |
| Generate a string from the SipMessage object. | |
Private Attributes | |
| Data | mRawMessage |
Allows sending of arbitrarily badly formed messages.
Definition at line 18 of file TestSupport.hxx.
| resip::SipRawMessage::SipRawMessage | ( | const SipMessage & | carrier, |
| const Data & | rawMessage | ||
| ) | [inline] |
Definition at line 21 of file TestSupport.hxx.
: SipMessage(carrier), mRawMessage(rawMessage) {}
| virtual EncodeStream& resip::SipRawMessage::encode | ( | EncodeStream & | str | ) | const [inline, virtual] |
Generate a string from the SipMessage object.
Reimplemented from resip::SipMessage.
Definition at line 29 of file TestSupport.hxx.
References EncodeStream, and mRawMessage.
{
str << mRawMessage;
return str;
}
| Data& resip::SipRawMessage::raw | ( | ) | const [inline] |
Data resip::SipRawMessage::mRawMessage [mutable, private] |
Definition at line 36 of file TestSupport.hxx.
1.7.5.1