reSIProcate/stack  9694
Public Member Functions | Private Attributes
resip::SipRawMessage Class Reference

Allows sending of arbitrarily badly formed messages. More...

#include <TestSupport.hxx>

Inheritance diagram for resip::SipRawMessage:
Inheritance graph
[legend]
Collaboration diagram for resip::SipRawMessage:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 SipRawMessage (const SipMessage &carrier, const Data &rawMessage)
Dataraw () const
virtual EncodeStreamencode (EncodeStream &str) const
 Generate a string from the SipMessage object.

Private Attributes

Data mRawMessage

Detailed Description

Allows sending of arbitrarily badly formed messages.

Definition at line 18 of file TestSupport.hxx.


Constructor & Destructor Documentation

resip::SipRawMessage::SipRawMessage ( const SipMessage carrier,
const Data rawMessage 
) [inline]

Definition at line 21 of file TestSupport.hxx.

         : SipMessage(carrier),
           mRawMessage(rawMessage)
      {}

Member Function Documentation

virtual EncodeStream& resip::SipRawMessage::encode ( EncodeStream str) const [inline, virtual]

Generate a string from the SipMessage object.

Returns:
string representation of a SIP message.

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]

Definition at line 27 of file TestSupport.hxx.

References mRawMessage.

{return mRawMessage;}

Member Data Documentation

Definition at line 36 of file TestSupport.hxx.

Referenced by encode(), and raw().


The documentation for this class was generated from the following file: