reSIProcate/stack  9694
Public Types | Public Member Functions | Public Attributes
resip::SendData Class Reference

#include <SendData.hxx>

Collaboration diagram for resip::SendData:
Collaboration graph
[legend]

List of all members.

Public Types

enum  SendDataCommand { NoCommand, CloseConnection, EnableFlowTimer }

Public Member Functions

 SendData ()
 SendData (const Tuple &dest, const Data &pdata, const Data &tid, const Data &scid, bool isCompressed=false)
 SendData (const Tuple &dest, char *buffer, int length)
SendDataclone () const
void clear ()
bool empty () const

Public Attributes

Tuple destination
Data data
Data transactionId
Data sigcompId
bool isAlreadyCompressed
SendDataCommand command

Detailed Description

Definition at line 13 of file SendData.hxx.


Member Enumeration Documentation

Enumerator:
NoCommand 
CloseConnection 
EnableFlowTimer 

Definition at line 16 of file SendData.hxx.


Constructor & Destructor Documentation

resip::SendData::SendData ( ) [inline]

Definition at line 23 of file SendData.hxx.

Referenced by clone().

resip::SendData::SendData ( const Tuple dest,
const Data pdata,
const Data tid,
const Data scid,
bool  isCompressed = false 
) [inline]

Definition at line 26 of file SendData.hxx.

                                         : 
         destination(dest),
         data(pdata),
         transactionId(tid),
         sigcompId(scid),
         isAlreadyCompressed(isCompressed),
         command(NoCommand)
      {
      }
resip::SendData::SendData ( const Tuple dest,
char *  buffer,
int  length 
) [inline]

Member Function Documentation

void resip::SendData::clear ( void  ) [inline]
SendData* resip::SendData::clone ( ) const [inline]

Definition at line 51 of file SendData.hxx.

References SendData().

Referenced by resip::TransportSelector::retransmit().

      {
         return new SendData(*this);
      }

Here is the call graph for this function:

bool resip::SendData::empty ( ) const [inline]

Definition at line 61 of file SendData.hxx.

References data, and resip::Data::empty().

Referenced by resip::TransactionState::processClientInvite(), resip::TransactionState::processServerInvite(), and resip::TransactionState::sendCurrentToWire().

      {
         return data.empty();
      }

Here is the call graph for this function:


Member Data Documentation

Definition at line 67 of file SendData.hxx.

Referenced by clear(), and empty().

Definition at line 70 of file SendData.hxx.

Definition at line 69 of file SendData.hxx.


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