summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorJeremy McNamara <jj@nufone.net>2003-08-12 22:20:12 +0000
committerJeremy McNamara <jj@nufone.net>2003-08-12 22:20:12 +0000
commit71fd88b9311dbdc29f04e842c0c91bf16d7fc574 (patch)
tree81054a1c9c220c3f5a784b2d8376b026049a343a /channels
parent4fbe072aa41df7c088bd8f79e4f8ae5f764215ba (diff)
something is crazy here
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1303 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rwxr-xr-xchannels/h323/ast_h323.cpp3
-rwxr-xr-xchannels/h323/chan_h323.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/channels/h323/ast_h323.cpp b/channels/h323/ast_h323.cpp
index 7f50b3613..84ea8f8be 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 e94978e57..7fbf5dfe2 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;