Lines Matching defs:l2cap_chan

493 struct l2cap_chan {  struct
494 struct l2cap_conn *conn;
495 struct hci_conn *hs_hcon;
496 struct hci_chan *hs_hchan;
497 struct kref kref;
498 atomic_t nesting;
500 __u8 state;
502 bdaddr_t dst;
503 __u8 dst_type;
504 bdaddr_t src;
505 __u8 src_type;
506 __le16 psm;
507 __le16 sport;
508 __u16 dcid;
509 __u16 scid;
511 __u16 imtu;
512 __u16 omtu;
513 __u16 flush_to;
514 __u8 mode;
515 __u8 chan_type;
516 __u8 chan_policy;
518 __u8 sec_level;
520 __u8 ident;
522 __u8 conf_req[64];
523 __u8 conf_len;
524 __u8 num_conf_req;
525 __u8 num_conf_rsp;
527 __u8 fcs;
529 __u16 tx_win;
530 __u16 tx_win_max;
531 __u16 ack_win;
532 __u8 max_tx;
533 __u16 retrans_timeout;
534 __u16 monitor_timeout;
535 __u16 mps;
537 __u16 tx_credits;
538 __u16 rx_credits;
540 __u8 tx_state;
541 __u8 rx_state;
543 unsigned long conf_state;
544 unsigned long conn_state;
545 unsigned long flags;
547 __u8 remote_amp_id;
548 __u8 local_amp_id;
549 __u8 move_id;
550 __u8 move_state;
551 __u8 move_role;
553 __u16 next_tx_seq;
554 __u16 expected_ack_seq;
555 __u16 expected_tx_seq;
556 __u16 buffer_seq;
557 __u16 srej_save_reqseq;
558 __u16 last_acked_seq;
559 __u16 frames_sent;
560 __u16 unacked_frames;
561 __u8 retry_count;
562 __u16 sdu_len;
563 struct sk_buff *sdu;
564 struct sk_buff *sdu_last_frag;
566 __u16 remote_tx_win;
567 __u8 remote_max_tx;
568 __u16 remote_mps;
570 __u8 local_id;
571 __u8 local_stype;
572 __u16 local_msdu;
573 __u32 local_sdu_itime;
574 __u32 local_acc_lat;
575 __u32 local_flush_to;
577 __u8 remote_id;
578 __u8 remote_stype;
579 __u16 remote_msdu;
580 __u32 remote_sdu_itime;
581 __u32 remote_acc_lat;
582 __u32 remote_flush_to;
606 struct l2cap_chan *(*new_connection) (struct l2cap_chan *chan); argument