mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-15 15:41:24 +01:00
copy bt address info too
This commit is contained in:
parent
74afdbd8b6
commit
f2ecefd573
1 changed files with 6 additions and 0 deletions
|
@ -2396,6 +2396,12 @@ logAddr( CommsCtxt* comms, const CommsAddrRec* addr, const char* caller )
|
|||
snprintf( buf, sizeof(buf), "%d", addr->u.sms.port );
|
||||
stream_catString( stream, buf );
|
||||
break;
|
||||
case COMMS_CONN_BT:
|
||||
stream_catString( stream, "host: " );
|
||||
stream_catString( stream, addr->u.bt.hostName );
|
||||
stream_catString( stream, "addr: " );
|
||||
stream_catString( stream, addr->u.bt.btAddr.chars );
|
||||
break;
|
||||
default:
|
||||
XP_ASSERT(0);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue