summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy McNamara <jj@nufone.net>2003-09-29 09:18:56 +0000
committerJeremy McNamara <jj@nufone.net>2003-09-29 09:18:56 +0000
commit0bf4bf3f541142444c3f781d76ada408a641207b (patch)
tree0a7a4303f3e9ec707a340c87cbd2a2db89c34f7d
parent7bf42218fe7721ea160be61624dd1a2fdee7d594 (diff)
remove old debug
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1577 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xchannels/chan_h323.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/channels/chan_h323.c b/channels/chan_h323.c
index b6d2fcfab..312a8bd2a 100755
--- a/channels/chan_h323.c
+++ b/channels/chan_h323.c
@@ -928,13 +928,17 @@ struct rtp_info *create_connection(unsigned call_reference)
ast_rtp_get_us(p->rtp, &us);
ast_rtp_get_peer(p->rtp, &them);
- printf(" us: %s:%d\n", inet_ntoa(us.sin_addr), ntohs(us.sin_port));
- printf("them: %s:%d\n", inet_ntoa(them.sin_addr), ntohs(them.sin_port));
info->addr = inet_ntoa(us.sin_addr);
info->port = ntohs(us.sin_port);
-
+
+#if 0
+ printf(" us: %s:%d\n", inet_ntoa(us.sin_addr), ntohs(us.sin_port));
+ printf("them: %s:%d\n", inet_ntoa(them.sin_addr), ntohs(them.sin_port));
+
printf("info: %s:%d\n", info->addr, info->port);
+#endif
+
return info;
}