aboutsummaryrefslogtreecommitdiffstats
path: root/channels/h323/ast_h323.cpp
diff options
context:
space:
mode:
authorjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2003-06-04 07:14:10 +0000
committerjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2003-06-04 07:14:10 +0000
commit60f25e1a9ffd65bc8679da9db77134034476296e (patch)
tree640928fec3a842cd8c887c0917be6e933da58af4 /channels/h323/ast_h323.cpp
parentb3d3f6dfc5c0086d257bc8d1b2b74c23ee8f00e0 (diff)
add print showing which H.323ID we are gonna use
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1072 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/h323/ast_h323.cpp')
-rwxr-xr-xchannels/h323/ast_h323.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/channels/h323/ast_h323.cpp b/channels/h323/ast_h323.cpp
index da073d770..b5c4c47da 100755
--- a/channels/h323/ast_h323.cpp
+++ b/channels/h323/ast_h323.cpp
@@ -877,6 +877,11 @@ int h323_set_alias(struct oh323_alias *alias)
void h323_set_id(char *id)
{
PString h323id(id);
+
+ if (h323debug) {
+ cout << " == Using " << h323id << " as our H.323ID for this call" << endl;
+ }
+
/* EVIL HACK */
endPoint->SetLocalUserName(h323id);
}