Lines Matching defs:tsap_cb
103 struct tsap_cb { struct
104 irda_queue_t q; /* Must be first */
105 magic_t magic; /* Just in case */
107 __u8 stsap_sel; /* Source TSAP */
108 __u8 dtsap_sel; /* Destination TSAP */
110 struct lsap_cb *lsap; /* Corresponding LSAP to this TSAP */
112 __u8 connected; /* TSAP connected */
114 __u8 initial_credit; /* Initial credit to give peer */
116 int avail_credit; /* Available credit to return to peer */
117 int remote_credit; /* Credit held by peer TTP entity */
118 int send_credit; /* Credit held by local TTP entity */
120 struct sk_buff_head tx_queue; /* Frames to be transmitted */
121 struct sk_buff_head rx_queue; /* Received frames */
122 struct sk_buff_head rx_fragments;
123 int tx_queue_lock;
124 int rx_queue_lock;
125 spinlock_t lock;
127 notify_t notify; /* Callbacks to client layer */
129 struct net_device_stats stats;
130 struct timer_list todo_timer;
155 struct tsap_cb *irttp_open_tsap(__u8 stsap_sel, int credit, notify_t *notify); argument