Lines Matching defs:l2cap_chan
409 struct l2cap_chan { struct
410 struct sock *sk;
412 struct l2cap_conn *conn;
414 __u8 state;
416 atomic_t refcnt;
418 __le16 psm;
419 __u16 dcid;
420 __u16 scid;
422 __u16 imtu;
423 __u16 omtu;
424 __u16 flush_to;
425 __u8 mode;
426 __u8 chan_type;
427 __u8 chan_policy;
429 __le16 sport;
431 __u8 sec_level;
433 __u8 ident;
435 __u8 conf_req[64];
436 __u8 conf_len;
437 __u8 num_conf_req;
438 __u8 num_conf_rsp;
440 __u8 fcs;
442 __u16 tx_win;
443 __u16 tx_win_max;
444 __u8 max_tx;
445 __u16 retrans_timeout;
446 __u16 monitor_timeout;
447 __u16 mps;
449 unsigned long conf_state;
450 unsigned long conn_state;
451 unsigned long flags;
453 __u16 next_tx_seq;
454 __u16 expected_ack_seq;
455 __u16 expected_tx_seq;
456 __u16 buffer_seq;
457 __u16 buffer_seq_srej;
458 __u16 srej_save_reqseq;
459 __u16 frames_sent;
460 __u16 unacked_frames;
461 __u8 retry_count;
462 __u8 num_acked;
463 __u16 sdu_len;
464 struct sk_buff *sdu;
465 struct sk_buff *sdu_last_frag;
467 __u16 remote_tx_win;
468 __u8 remote_max_tx;
469 __u16 remote_mps;
471 __u8 local_id;
472 __u8 local_stype;
473 __u16 local_msdu;
474 __u32 local_sdu_itime;
475 __u32 local_acc_lat;
476 __u32 local_flush_to;
478 __u8 remote_id;
479 __u8 remote_stype;
480 __u16 remote_msdu;
481 __u32 remote_sdu_itime;
505 struct l2cap_chan *(*new_connection) (void *data); argument