Lines Matching defs:l2cap_chan

540 struct l2cap_chan {  struct
541 struct l2cap_conn *conn;
542 struct hci_conn *hs_hcon;
543 struct hci_chan *hs_hchan;
544 struct kref kref;
545 atomic_t nesting;
547 __u8 state;
549 bdaddr_t dst;
550 __u8 dst_type;
551 bdaddr_t src;
552 __u8 src_type;
553 __le16 psm;
554 __le16 sport;
555 __u16 dcid;
556 __u16 scid;
558 __u16 imtu;
559 __u16 omtu;
560 __u16 flush_to;
561 __u8 mode;
562 __u8 chan_type;
563 __u8 chan_policy;
565 __u8 sec_level;
567 __u8 ident;
569 __u8 conf_req[64];
570 __u8 conf_len;
571 __u8 num_conf_req;
572 __u8 num_conf_rsp;
574 __u8 fcs;
576 __u16 tx_win;
577 __u16 tx_win_max;
578 __u16 ack_win;
579 __u8 max_tx;
580 __u16 retrans_timeout;
581 __u16 monitor_timeout;
582 __u16 mps;
584 __u16 tx_credits;
585 __u16 rx_credits;
587 __u8 tx_state;
588 __u8 rx_state;
590 unsigned long conf_state;
591 unsigned long conn_state;
592 unsigned long flags;
594 __u8 remote_amp_id;
595 __u8 local_amp_id;
596 __u8 move_id;
597 __u8 move_state;
598 __u8 move_role;
600 __u16 next_tx_seq;
601 __u16 expected_ack_seq;
602 __u16 expected_tx_seq;
603 __u16 buffer_seq;
604 __u16 srej_save_reqseq;
605 __u16 last_acked_seq;
606 __u16 frames_sent;
607 __u16 unacked_frames;
608 __u8 retry_count;
609 __u16 sdu_len;
610 struct sk_buff *sdu;
611 struct sk_buff *sdu_last_frag;
613 __u16 remote_tx_win;
614 __u8 remote_max_tx;
615 __u16 remote_mps;
617 __u8 local_id;
618 __u8 local_stype;
619 __u16 local_msdu;
620 __u32 local_sdu_itime;
621 __u32 local_acc_lat;
622 __u32 local_flush_to;
624 __u8 remote_id;
625 __u8 remote_stype;
626 __u16 remote_msdu;
627 __u32 remote_sdu_itime;
628 __u32 remote_acc_lat;
629 __u32 remote_flush_to;
653 struct l2cap_chan *(*new_connection) (struct l2cap_chan *chan); argument