add print showing which H.323ID we are gonna use

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1072 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jeremy McNamara 2003-06-04 07:14:10 +00:00
parent 1cb4cc98ab
commit a13bf9ab7a
1 changed files with 5 additions and 0 deletions

View File

@ -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);
}