Lines Matching defs:l2cap_chan

483 struct l2cap_chan {  struct
484 struct l2cap_conn *conn;
485 struct hci_conn *hs_hcon;
486 struct hci_chan *hs_hchan;
487 struct kref kref;
488 atomic_t nesting;
490 __u8 state;
492 bdaddr_t dst;
493 __u8 dst_type;
494 bdaddr_t src;
495 __u8 src_type;
496 __le16 psm;
497 __le16 sport;
498 __u16 dcid;
499 __u16 scid;
501 __u16 imtu;
502 __u16 omtu;
503 __u16 flush_to;
504 __u8 mode;
505 __u8 chan_type;
506 __u8 chan_policy;
508 __u8 sec_level;
510 __u8 ident;
512 __u8 conf_req[64];
513 __u8 conf_len;
514 __u8 num_conf_req;
515 __u8 num_conf_rsp;
517 __u8 fcs;
519 __u16 tx_win;
520 __u16 tx_win_max;
521 __u16 ack_win;
522 __u8 max_tx;
523 __u16 retrans_timeout;
524 __u16 monitor_timeout;
525 __u16 mps;
527 __u16 tx_credits;
528 __u16 rx_credits;
530 __u8 tx_state;
531 __u8 rx_state;
533 unsigned long conf_state;
534 unsigned long conn_state;
535 unsigned long flags;
537 __u8 remote_amp_id;
538 __u8 local_amp_id;
539 __u8 move_id;
540 __u8 move_state;
541 __u8 move_role;
543 __u16 next_tx_seq;
544 __u16 expected_ack_seq;
545 __u16 expected_tx_seq;
546 __u16 buffer_seq;
547 __u16 srej_save_reqseq;
548 __u16 last_acked_seq;
549 __u16 frames_sent;
550 __u16 unacked_frames;
551 __u8 retry_count;
552 __u16 sdu_len;
553 struct sk_buff *sdu;
554 struct sk_buff *sdu_last_frag;
556 __u16 remote_tx_win;
557 __u8 remote_max_tx;
558 __u16 remote_mps;
560 __u8 local_id;
561 __u8 local_stype;
562 __u16 local_msdu;
563 __u32 local_sdu_itime;
564 __u32 local_acc_lat;
565 __u32 local_flush_to;
567 __u8 remote_id;
568 __u8 remote_stype;
569 __u16 remote_msdu;
570 __u32 remote_sdu_itime;
571 __u32 remote_acc_lat;
572 __u32 remote_flush_to;
596 struct l2cap_chan *(*new_connection) (struct l2cap_chan *chan); argument