|
From: Anders J. <and...@us...> - 2003-02-18 15:23:32
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Tag Comment ---- ----------- ----------- --- ------- l2cap_con.c 1.15 1.16=20=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: CoD copied to any new l2cap-connections which are "cloned" from an existing= one. The diff of the modified file(s): --- l2cap_con.c 27 Sep 2002 12:54:11 -0000 1.15 +++ l2cap_con.c 18 Feb 2003 15:22:58 -0000 1.16 @@ -308,6 +308,7 @@ new_con->initiator =3D FALSE; /* set bd address in new connection */ memcpy(new_con->remote_bd, found->remote_bd, 6); + memcpy(new_con->remote_class_of_dev, found->remote_class_of_dev, 3); =20=20=20=20=20=20=20=20=20=20=20=20=20 insert_con(new_con); SHOW_LIST(); @@ -599,10 +600,10 @@ pos +=3D sprintf(buf + pos, " ]\n"); =20 pos +=3D sprintf(buf + pos,=20 - "lcid[%d] rcid[%d] state[%s] psm[%s]\n", + "lcid[%d] rcid[%d] state[%s] psm[%s] CoD[0x%02x%02x%02x]\n", con->local_cid, con->remote_cid,=20 state_name[con->current_state],=20 - psm2str(con->psm)); + psm2str(con->psm), con->remote_class_of_dev[2], con->remote_clas= s_of_dev[1], con->remote_class_of_dev[0]); =20 pos +=3D sprintf(buf + pos, "remote_mtu[%d] local_mtu [%d] clnt[%s] link_up[%s]\n", |