[Freeswitch-trunk] [commit] r6139 - freeswitch/trunk/src/mod/endpoints/mod_opal
Freeswitch SVN
tuyan at freeswitch.org
Thu Nov 1 21:24:18 EDT 2007
Author: tuyan
Date: Thu Nov 1 21:24:18 2007
New Revision: 6139
Modified:
freeswitch/trunk/src/mod/endpoints/mod_opal/opal_backend.cpp
Log:
Fixed dialplan issue, context set to 10.0.0.1 and needs to be reset
to whatever context (configuration option)
Modified: freeswitch/trunk/src/mod/endpoints/mod_opal/opal_backend.cpp
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_opal/opal_backend.cpp (original)
+++ freeswitch/trunk/src/mod/endpoints/mod_opal/opal_backend.cpp Thu Nov 1 21:24:18 2007
@@ -159,7 +159,7 @@
///TODO m_pH323Endpoint->SetVendorIdentifierInfo()
///TODO address should be configurable, should allow creaeing listeners on multiple interfaces
- OpalTransportAddress opalTransportAddress("192.168.0.1",1720); //for time being create listener on all ip's and default port
+ OpalTransportAddress opalTransportAddress("10.0.0.1",1726); //for time being create listener on all ip's and default port
if(!m_pH323Endpoint->StartListeners(opalTransportAddress))
{
assert(0);
@@ -270,7 +270,7 @@
tech_pvt->m_callerProfile = switch_caller_profile_new(
switch_core_session_get_pool(session),
(const char*)connection.GetRemotePartyName(), /** username */
- "default", /** TODO -> this should be configurable by core */
+ "XML", /** TODO -> this should be configurable by core */
(const char*)connection.GetRemotePartyName(), /** caller_id_name */
(const char*)connection.GetRemotePartyNumber(), /** caller_id_number */
(const char*)connection.GetRemotePartyAddress(),/** network addr */
@@ -278,7 +278,7 @@
NULL, /** ANI II */
NULL, /** RDNIS */
m_pModuleName, /** source */
- NULL, /** TODO -> set context */
+ "10.0.0.1", /** TODO -> set context */
(const char*)connection.GetCalledDestinationNumber() /** destination_number */
);
More information about the Freeswitch-trunk
mailing list