aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2004-05-20 09:00:04 +0000
committerjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2004-05-20 09:00:04 +0000
commit7e42c962d89de0673789eed30649fc7ae276aa50 (patch)
tree0c569b70fd65703ab393f57f7160f597555a7300 /channels
parent1cc1812b6d32104f8fb9d917e26fa104383a63dc (diff)
cleanup code and debug
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3028 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rwxr-xr-xchannels/h323/ast_h323.cpp18
-rwxr-xr-xchannels/h323/ast_h323.h1
2 files changed, 5 insertions, 14 deletions
diff --git a/channels/h323/ast_h323.cpp b/channels/h323/ast_h323.cpp
index 9bb122fc6..16a63ac3d 100755
--- a/channels/h323/ast_h323.cpp
+++ b/channels/h323/ast_h323.cpp
@@ -723,14 +723,15 @@ BOOL MyH323Connection::OnStartLogicalChannel(H323Channel & channel)
if (h323debug) {
cout << " -- channelsOpen = " << channelsOpen << endl;
}
+
H323_ExternalRTPChannel & external = (H323_ExternalRTPChannel &)channel;
external.GetRemoteAddress(remoteIpAddress, remotePort);
if (h323debug) {
- cout << " -- remoteIpAddress: " << remoteIpAddress << endl;
- cout << " -- remotePort: " << remotePort << endl;
- cout << " -- ExternalIpAddress: " << externalIpAddress << endl;
- cout << " -- ExternalPort: " << externalPort << endl;
+ if (channel.GetDirection()==H323Channel::IsReceiver) {
+ cout << " -- remoteIpAddress: " << remoteIpAddress << endl;
+ cout << " -- remotePort: " << remotePort << endl;
+ }
}
/* Notify Asterisk of remote RTP information */
on_start_logical_channel(GetCallReference(), (const char *)remoteIpAddress.AsString(), remotePort);
@@ -784,16 +785,8 @@ BOOL MyH323_ExternalRTPChannel::OnReceivedAckPDU(const H245_H2250LogicalChannelA
PIPSocket::Address remoteIpAddress;
WORD remotePort;
- if (h323debug) {
- cout << " MyH323_ExternalRTPChannel::OnReceivedAckPDU " << endl;
- }
-
if (H323_ExternalRTPChannel::OnReceivedAckPDU(param)) {
H323_ExternalRTPChannel::GetRemoteAddress(remoteIpAddress, remotePort);
- if (h323debug) {
- cout << " -- remoteIpAddress: " << remoteIpAddress << endl;
- cout << " -- remotePort: " << remotePort << endl;
- }
/* Notify Asterisk of remote RTP information */
on_start_logical_channel(connection.GetCallReference(), (const char *)remoteIpAddress.AsString(), remotePort);
return TRUE;
@@ -801,7 +794,6 @@ BOOL MyH323_ExternalRTPChannel::OnReceivedAckPDU(const H245_H2250LogicalChannelA
return FALSE;
}
-
/** IMPLEMENTATION OF C FUNCTIONS */
/**
diff --git a/channels/h323/ast_h323.h b/channels/h323/ast_h323.h
index 966edabe8..4be7f7440 100755
--- a/channels/h323/ast_h323.h
+++ b/channels/h323/ast_h323.h
@@ -285,7 +285,6 @@ class MyH323_ExternalRTPChannel : public H323_ExternalRTPChannel {
/* Destructor */
~MyH323_ExternalRTPChannel();
-
BOOL OnReceivedAckPDU(const H245_H2250LogicalChannelAckParameters & param);