Lines Matching refs:fixed_reg
58 tL2CAP_FIXED_CHNL_REG fixed_reg; in smp_l2cap_if_init() local
60 fixed_reg.fixed_chnl_opts.mode = L2CAP_FCR_BASIC_MODE; in smp_l2cap_if_init()
61 fixed_reg.fixed_chnl_opts.max_transmit = 0; in smp_l2cap_if_init()
62 fixed_reg.fixed_chnl_opts.rtrans_tout = 0; in smp_l2cap_if_init()
63 fixed_reg.fixed_chnl_opts.mon_tout = 0; in smp_l2cap_if_init()
64 fixed_reg.fixed_chnl_opts.mps = 0; in smp_l2cap_if_init()
65 fixed_reg.fixed_chnl_opts.tx_win_sz = 0; in smp_l2cap_if_init()
67 fixed_reg.pL2CA_FixedConn_Cb = smp_connect_callback; in smp_l2cap_if_init()
68 fixed_reg.pL2CA_FixedData_Cb = smp_data_received; in smp_l2cap_if_init()
69 fixed_reg.pL2CA_FixedTxComplete_Cb = smp_tx_complete_callback; in smp_l2cap_if_init()
71 fixed_reg.pL2CA_FixedCong_Cb = NULL; /* do not handle congestion on this channel */ in smp_l2cap_if_init()
72 … fixed_reg.default_idle_tout = 60; /* set 60 seconds timeout, 0xffff default idle timeout */ in smp_l2cap_if_init()
74 L2CA_RegisterFixedChannel (L2CAP_SMP_CID, &fixed_reg); in smp_l2cap_if_init()
76 fixed_reg.pL2CA_FixedConn_Cb = smp_br_connect_callback; in smp_l2cap_if_init()
77 fixed_reg.pL2CA_FixedData_Cb = smp_br_data_received; in smp_l2cap_if_init()
79 L2CA_RegisterFixedChannel (L2CAP_SMP_BR_CID, &fixed_reg); in smp_l2cap_if_init()