|
reSIProcate/stack
9694
|
SIP body type to represent contents with an Content-Type application/sip. More...
#include <ApplicationSip.hxx>


Public Member Functions | |
| ApplicationSip (const Mime &contentsType=getStaticType()) | |
| ApplicationSip (const HeaderFieldValue &hfv, const Mime &contentsType) | |
| ApplicationSip (const Data &data, const Mime &contentsType) | |
| ApplicationSip (const ApplicationSip &rhs) | |
| ApplicationSip & | operator= (const ApplicationSip &rhs) |
| virtual Contents * | clone () const |
| duplicate an ApplicationSip object | |
Static Public Member Functions | |
| static const Mime & | getStaticType () |
| static bool | init () |
SIP body type to represent contents with an Content-Type application/sip.
map content-type application/sip to the same parser as message/sip some Cisco gateways send NOTIFY with content-type application/sip
Definition at line 20 of file ApplicationSip.hxx.
| ApplicationSip::ApplicationSip | ( | const Mime & | contentsType = getStaticType() | ) |
| ApplicationSip::ApplicationSip | ( | const HeaderFieldValue & | hfv, |
| const Mime & | contentsType | ||
| ) |
Definition at line 26 of file ApplicationSip.cxx.
: SipFrag(hfv, contentsType) { }
| ApplicationSip::ApplicationSip | ( | const ApplicationSip & | rhs | ) |
Definition at line 31 of file ApplicationSip.cxx.
: SipFrag(rhs) { }
| Contents * ApplicationSip::clone | ( | ) | const [virtual] |
duplicate an ApplicationSip object
Reimplemented from resip::SipFrag.
Definition at line 44 of file ApplicationSip.cxx.
References ApplicationSip().
{
return new ApplicationSip(*this);
}

| const Mime & ApplicationSip::getStaticType | ( | ) | [static] |
Reimplemented from resip::SipFrag.
Definition at line 50 of file ApplicationSip.cxx.
References type.
| bool ApplicationSip::init | ( | ) | [static] |
Reimplemented from resip::SipFrag.
Definition at line 15 of file ApplicationSip.cxx.
{
static ContentsFactory<ApplicationSip> factory;
(void)factory;
return true;
}
| ApplicationSip & ApplicationSip::operator= | ( | const ApplicationSip & | rhs | ) |
Definition at line 37 of file ApplicationSip.cxx.
{
SipFrag::operator=(rhs);
return *this;
}
1.7.5.1