Lines Matching defs:l2cap_chan

512 struct l2cap_chan {  struct
513 struct l2cap_conn *conn;
514 struct kref kref;
515 atomic_t nesting;
517 __u8 state;
519 bdaddr_t dst;
520 __u8 dst_type;
521 bdaddr_t src;
522 __u8 src_type;
523 __le16 psm;
524 __le16 sport;
525 __u16 dcid;
526 __u16 scid;
528 __u16 imtu;
529 __u16 omtu;
530 __u16 flush_to;
531 __u8 mode;
532 __u8 chan_type;
533 __u8 chan_policy;
535 __u8 sec_level;
537 __u8 ident;
539 __u8 conf_req[64];
540 __u8 conf_len;
541 __u8 num_conf_req;
542 __u8 num_conf_rsp;
544 __u8 fcs;
546 __u16 tx_win;
547 __u16 tx_win_max;
548 __u16 ack_win;
549 __u8 max_tx;
550 __u16 retrans_timeout;
551 __u16 monitor_timeout;
552 __u16 mps;
554 __u16 tx_credits;
555 __u16 rx_credits;
558 ssize_t rx_avail;
560 __u8 tx_state;
561 __u8 rx_state;
563 unsigned long conf_state;
564 unsigned long conn_state;
565 unsigned long flags;
567 __u16 next_tx_seq;
568 __u16 expected_ack_seq;
569 __u16 expected_tx_seq;
570 __u16 buffer_seq;
571 __u16 srej_save_reqseq;
572 __u16 last_acked_seq;
573 __u16 frames_sent;
574 __u16 unacked_frames;
575 __u8 retry_count;
576 __u16 sdu_len;
577 struct sk_buff *sdu;
578 struct sk_buff *sdu_last_frag;
580 __u16 remote_tx_win;
581 __u8 remote_max_tx;
582 __u16 remote_mps;
584 __u8 local_id;
585 __u8 local_stype;
586 __u16 local_msdu;
587 __u32 local_sdu_itime;
588 __u32 local_acc_lat;
589 __u32 local_flush_to;
591 __u8 remote_id;
592 __u8 remote_stype;
593 __u16 remote_msdu;
594 __u32 remote_sdu_itime;
595 __u32 remote_acc_lat;
596 __u32 remote_flush_to;
620 struct l2cap_chan *(*new_connection) (struct l2cap_chan *chan); argument