• Home
  • Raw
  • Download

Lines Matching defs:l2cap_chan

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