From 71fd88b9311dbdc29f04e842c0c91bf16d7fc574 Mon Sep 17 00:00:00 2001 From: Jeremy McNamara Date: Tue, 12 Aug 2003 22:20:12 +0000 Subject: [PATCH] something is crazy here git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1303 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/h323/ast_h323.cpp | 3 +++ channels/h323/chan_h323.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/channels/h323/ast_h323.cpp b/channels/h323/ast_h323.cpp index 7f50b3613d..84ea8f8bee 100755 --- a/channels/h323/ast_h323.cpp +++ b/channels/h323/ast_h323.cpp @@ -1033,6 +1033,9 @@ void h323_native_bridge(const char *token, char *them, char *us) H323Channel *channel; H323Connection *connection = endPoint->FindConnectionWithLock(token); + + cout << "Native Bridge: them [" << them << "] us [" << us << "]" << endl; + if (!connection){ cout << "ERROR: No connection active.\n"; return; diff --git a/channels/h323/chan_h323.c b/channels/h323/chan_h323.c index e94978e57b..7fbf5dfe28 100755 --- a/channels/h323/chan_h323.c +++ b/channels/h323/chan_h323.c @@ -656,7 +656,7 @@ static struct ast_channel *oh323_new(struct oh323_pvt *i, int state, const char tmp->pvt->write = oh323_write; tmp->pvt->indicate = oh323_indicate; tmp->pvt->fixup = oh323_fixup; -// tmp->pvt->bridge = ast_rtp_bridge; + tmp->pvt->bridge = ast_rtp_bridge; /* Set the owner of this channel */ i->owner = tmp;