Module: sems Branch: rco/offer_answer Commit: d8cede00aad13a33f75f2783f14bebee996deebc URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=d8cede00aad13a33f75f2783f14bebee996deebc
Author: Raphael Coeffic <[email protected]> Committer: Raphael Coeffic <[email protected]> Date: Mon May 16 15:06:06 2011 +0200 introduced "earlySession" as a condition --- apps/dsm/DSMCoreModule.cpp | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/apps/dsm/DSMCoreModule.cpp b/apps/dsm/DSMCoreModule.cpp index 3679155..2bdb924 100644 --- a/apps/dsm/DSMCoreModule.cpp +++ b/apps/dsm/DSMCoreModule.cpp @@ -163,6 +163,9 @@ DSMCondition* DSMCoreModule::getCondition(const string& from_str) { if (cmd == "invite") return new TestDSMCondition(params, DSMCondition::Invite); + if (cmd == "earlySession") + return new TestDSMCondition(params, DSMCondition::EarlySession); + if (cmd == "sessionStart") return new TestDSMCondition(params, DSMCondition::SessionStart); _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
