Searched defs:tsap (Results 1 - 5 of 5) sorted by relevance

/net/irda/irlan/
H A Dirlan_provider.c129 struct tsap_cb *tsap; local
134 tsap = sap;
139 IRDA_ASSERT(tsap == self->provider.tsap_ctrl,return;);
166 struct tsap_cb *tsap)
172 irttp_connect_response(tsap, IRLAN_MTU, NULL);
180 struct tsap_cb *tsap; local
185 tsap = sap;
189 IRDA_ASSERT(tsap != NULL, return;);
190 IRDA_ASSERT(tsap->magic == TTP_TSAP_MAGIC, return;);
192 IRDA_ASSERT(tsap
165 irlan_provider_connect_response(struct irlan_cb *self, struct tsap_cb *tsap) argument
382 struct tsap_cb *tsap; local
[all...]
H A Dirlan_client.c223 struct tsap_cb *tsap; local
229 tsap = sap;
233 IRDA_ASSERT(tsap != NULL, return;);
234 IRDA_ASSERT(tsap->magic == TTP_TSAP_MAGIC, return;);
236 IRDA_ASSERT(tsap == self->client.tsap_ctrl, return;);
255 struct tsap_cb *tsap; local
276 tsap = irttp_open_tsap(LSAP_ANY, DEFAULT_INITIAL_CREDIT, &notify);
277 if (!tsap) {
278 IRDA_DEBUG(2, "%s(), Got no tsap!\n", __func__ );
281 self->client.tsap_ctrl = tsap;
[all...]
H A Dirlan_common.c315 struct tsap_cb *tsap; local
320 tsap = sap;
324 IRDA_ASSERT(tsap == self->tsap_data,return;);
404 struct tsap_cb *tsap; local
409 tsap = sap;
413 IRDA_ASSERT(tsap != NULL, return;);
414 IRDA_ASSERT(tsap->magic == TTP_TSAP_MAGIC, return;);
416 IRDA_ASSERT(tsap == self->tsap_data, return;);
459 struct tsap_cb *tsap; local
482 tsap
[all...]
/net/irda/irnet/
H A Dirnet.h192 * asynchronous IAS query, self->tsap is NULL when PPP send the
428 struct tsap_cb * tsap; /* IrTTP instance (the connection) */ member in struct:irnet_socket
/net/irda/
H A Dirttp.c374 * Initialization, that has to be done on new tsap
377 static void irttp_init_tsap(struct tsap_cb *tsap) argument
379 spin_lock_init(&tsap->lock);
380 init_timer(&tsap->todo_timer);
382 skb_queue_head_init(&tsap->rx_queue);
383 skb_queue_head_init(&tsap->tx_queue);
384 skb_queue_head_init(&tsap->rx_fragments);
405 IRDA_DEBUG(0, "%s(), invalid tsap!\n", __func__);
504 * Note : because we *free* the tsap structure, it is the responsibility
510 struct tsap_cb *tsap; local
[all...]

Completed in 70 milliseconds