From 9a05aca82b46512b8e80162d030892a2c66b3ab4 Mon Sep 17 00:00:00 2001 From: Georgiewskiy Yuriy Date: Tue, 27 Oct 2009 11:33:58 +0000 Subject: [PATCH] uncoment codec-prefs handling (commented out while make some experiments with codec exchange). git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15246 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/endpoints/mod_h323/mod_h323.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mod/endpoints/mod_h323/mod_h323.cpp b/src/mod/endpoints/mod_h323/mod_h323.cpp index d001064592..fa346147d7 100644 --- a/src/mod/endpoints/mod_h323/mod_h323.cpp +++ b/src/mod/endpoints/mod_h323/mod_h323.cpp @@ -1,5 +1,5 @@ /* - Version 0.0.8 + Version 0.0.9 */ #include "mod_h323.h" @@ -872,9 +872,9 @@ bool FSH323Connection::OnReceivedCapabilitySet(const H323Capabilities & remoteCa bool FSH323Connection::OnAlerting(const H323SignalPDU &alertingPDU, const PString &user){ PTRACE(4, "mod_h323\t======>PFSH323Connection::OnAlerting user = "<<(const char *)user<<" ["<<*this<<"]"); - - return (switch_channel_mark_ring_ready(m_fsChannel) == SWITCH_STATUS_SUCCESS); - ; + switch_status_t status = switch_channel_mark_ring_ready(m_fsChannel); + PTRACE(4, "mod_h323\t----------->OnAlerting return = "<