Lines Matching defs:l2cap_chan

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