|
reSIProcate/DialogUsageManager
9694
|


Public Member Functions | |
| MyApp (resip::SharedPtr< resip::MasterProfile > profile) | |
| void | overrideContact (const resip::Uri &contact) |
| virtual void | onRegEvent (const resip::Data &aor, const resip::Data ®) |
| virtual void | onRegEventError (const resip::Data &aor, const resip::Data ®) |
| MyApp::MyApp | ( | resip::SharedPtr< resip::MasterProfile > | profile | ) | [inline] |
Definition at line 96 of file treg.cxx.
: RegEventClient(profile) { SharedPtr<DumFeature> f1(new FixMissingContact(mDum, mDum.dumIncomingTarget())); mDum.addIncomingFeature(f1); }
| virtual void MyApp::onRegEvent | ( | const resip::Data & | aor, |
| const resip::Data & | reg | ||
| ) | [inline, virtual] |
Implements RegEventClient.
Definition at line 111 of file treg.cxx.
References WarningLog.
{
WarningLog (<< "Got result from " << aor << " --> " << reg);
}
| virtual void MyApp::onRegEventError | ( | const resip::Data & | aor, |
| const resip::Data & | reg | ||
| ) | [inline, virtual] |
Implements RegEventClient.
Definition at line 116 of file treg.cxx.
References WarningLog.
{
WarningLog (<< "Got error for " << aor);
}
| void MyApp::overrideContact | ( | const resip::Uri & | contact | ) | [inline] |
Definition at line 104 of file treg.cxx.
Referenced by main().
{
// This is only necessary if the user agent is running behind a NAT.
SharedPtr<DumFeature> f2(new OverrideContact(contact, mDum, mDum.dumOutgoingTarget()));
mDum.addOutgoingFeature(f2);
}
1.7.5.1