|
From: Mattias A. <mat...@us...> - 2001-04-12 15:10:49
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- l2cap_con.c 1.5 1.6=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * added init of conf_req_sent and timer.rtx_no The diff of the modified file(s): --- l2cap_con.c 2001/03/30 12:01:33 1.5 +++ l2cap_con.c 2001/04/12 15:10:49 1.6 @@ -182,6 +182,7 @@ con->current_state =3D CLOSED; con->conf_req_ready =3D TRUE; /* haven't started anything yet */ con->conf_rsp_ready =3D TRUE; /* haven't started anything yet */ + con->conf_req_sent =3D 0; /* haven't sent anything yet */ con->initiator =3D FALSE; /* Other side initiated (default) */=20 con->magic =3D L2CAP_CON_MAGIC; con->upper_con =3D NULL; @@ -192,6 +193,7 @@ con->timer.ertx_action =3D ERTX_ACTION_DISCONNECT; con->timer.rtx_inuse =3D 0; con->timer.ertx_inuse =3D 0; + con->timer.rtx_no =3D 0; =20 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,0) con->wq =3D NULL; |