Lines Matching defs:l2cap_chan
487 struct l2cap_chan { struct
488 struct l2cap_conn *conn;
489 struct hci_conn *hs_hcon;
490 struct hci_chan *hs_hchan;
491 struct kref kref;
492 atomic_t nesting;
494 __u8 state;
496 bdaddr_t dst;
497 __u8 dst_type;
498 bdaddr_t src;
499 __u8 src_type;
500 __le16 psm;
501 __le16 sport;
502 __u16 dcid;
503 __u16 scid;
505 __u16 imtu;
506 __u16 omtu;
507 __u16 flush_to;
508 __u8 mode;
509 __u8 chan_type;
510 __u8 chan_policy;
512 __u8 sec_level;
514 __u8 ident;
516 __u8 conf_req[64];
517 __u8 conf_len;
518 __u8 num_conf_req;
519 __u8 num_conf_rsp;
521 __u8 fcs;
523 __u16 tx_win;
524 __u16 tx_win_max;
525 __u16 ack_win;
526 __u8 max_tx;
527 __u16 retrans_timeout;
528 __u16 monitor_timeout;
529 __u16 mps;
531 __u16 tx_credits;
532 __u16 rx_credits;
534 __u8 tx_state;
535 __u8 rx_state;
537 unsigned long conf_state;
538 unsigned long conn_state;
539 unsigned long flags;
541 __u8 remote_amp_id;
542 __u8 local_amp_id;
543 __u8 move_id;
544 __u8 move_state;
545 __u8 move_role;
547 __u16 next_tx_seq;
548 __u16 expected_ack_seq;
549 __u16 expected_tx_seq;
550 __u16 buffer_seq;
551 __u16 srej_save_reqseq;
552 __u16 last_acked_seq;
553 __u16 frames_sent;
554 __u16 unacked_frames;
555 __u8 retry_count;
556 __u16 sdu_len;
557 struct sk_buff *sdu;
558 struct sk_buff *sdu_last_frag;
560 __u16 remote_tx_win;
561 __u8 remote_max_tx;
562 __u16 remote_mps;
564 __u8 local_id;
565 __u8 local_stype;
566 __u16 local_msdu;
567 __u32 local_sdu_itime;
568 __u32 local_acc_lat;
569 __u32 local_flush_to;
571 __u8 remote_id;
572 __u8 remote_stype;
573 __u16 remote_msdu;
574 __u32 remote_sdu_itime;
575 __u32 remote_acc_lat;
576 __u32 remote_flush_to;
600 struct l2cap_chan *(*new_connection) (struct l2cap_chan *chan); argument