|
reSIProcate/repro
9694
|
#include <XmlRpcServerBase.hxx>

Public Member Functions | |
| ResponseInfo (unsigned int connectionId, unsigned int requestId, const resip::Data &responseData, bool isFinal) | |
| ~ResponseInfo () | |
| unsigned int | getConnectionId () const |
| unsigned int | getRequestId () const |
| const resip::Data & | getResponseData () const |
| bool | getIsFinal () const |
Private Attributes | |
| unsigned int | mConnectionId |
| unsigned int | mRequestId |
| resip::Data | mResponseData |
| bool | mIsFinal |
Definition at line 20 of file XmlRpcServerBase.hxx.
| repro::ResponseInfo::ResponseInfo | ( | unsigned int | connectionId, |
| unsigned int | requestId, | ||
| const resip::Data & | responseData, | ||
| bool | isFinal | ||
| ) | [inline] |
Definition at line 23 of file XmlRpcServerBase.hxx.
:
mConnectionId(connectionId),
mRequestId(requestId),
mResponseData(responseData),
mIsFinal(isFinal) {}
| repro::ResponseInfo::~ResponseInfo | ( | ) | [inline] |
Definition at line 32 of file XmlRpcServerBase.hxx.
{}
| unsigned int repro::ResponseInfo::getConnectionId | ( | ) | const [inline] |
Definition at line 34 of file XmlRpcServerBase.hxx.
{ return mConnectionId; }
| bool repro::ResponseInfo::getIsFinal | ( | ) | const [inline] |
Definition at line 37 of file XmlRpcServerBase.hxx.
{ return mIsFinal; }
| unsigned int repro::ResponseInfo::getRequestId | ( | ) | const [inline] |
Definition at line 35 of file XmlRpcServerBase.hxx.
{ return mRequestId; }
| const resip::Data& repro::ResponseInfo::getResponseData | ( | ) | const [inline] |
Definition at line 36 of file XmlRpcServerBase.hxx.
{ return mResponseData; }
unsigned int repro::ResponseInfo::mConnectionId [private] |
Definition at line 40 of file XmlRpcServerBase.hxx.
bool repro::ResponseInfo::mIsFinal [private] |
Definition at line 43 of file XmlRpcServerBase.hxx.
unsigned int repro::ResponseInfo::mRequestId [private] |
Definition at line 41 of file XmlRpcServerBase.hxx.
Definition at line 42 of file XmlRpcServerBase.hxx.
1.7.5.1