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
This commit is contained in:
Georgiewskiy Yuriy 2009-10-27 11:33:58 +00:00
parent 8eeca9099f
commit 9a05aca82b

View File

@ -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 = "<<status);
return ( status == SWITCH_STATUS_SUCCESS);
}
void FSH323Connection::OnEstablished(){