00001 /********************************************************************* 00002 * 00003 * Filename: irlan_client.h 00004 * Version: 0.3 00005 * Description: IrDA LAN access layer 00006 * Status: Experimental. 00007 * Author: Dag Brattli <dagb@cs.uit.no> 00008 * Created at: Sun Aug 31 20:14:37 1997 00009 * Modified at: Thu Apr 22 14:13:34 1999 00010 * Modified by: Dag Brattli <dagb@cs.uit.no> 00011 * 00012 * Copyright (c) 1998 Dag Brattli <dagb@cs.uit.no>, All Rights Reserved. 00013 * 00014 * This program is free software; you can redistribute it and/or 00015 * modify it under the terms of the GNU General Public License as 00016 * published by the Free Software Foundation; either version 2 of 00017 * the License, or (at your option) any later version. 00018 * 00019 * Neither Dag Brattli nor University of Tromsų admit liability nor 00020 * provide warranty for any of this software. This material is 00021 * provided "AS-IS" and at no charge. 00022 * 00023 ********************************************************************/ 00024 00025 #ifndef IRLAN_CLIENT_H 00026 #define IRLAN_CLIENT_H 00027 00028 #include <linux/kernel.h> 00029 #include <linux/types.h> 00030 #include <linux/skbuff.h> 00031 #include <linux/netdevice.h> 00032 00033 #include <net/irda/irias_object.h> 00034 #include <net/irda/irlan_event.h> 00035 00036 void irlan_client_start_kick_timer(struct irlan_cb *self, int timeout); 00037 void irlan_client_discovery_indication(discovery_t *); 00038 void irlan_client_wakeup(struct irlan_cb *self, __u32 saddr, __u32 daddr); 00039 00040 void irlan_client_open_ctrl_tsap( struct irlan_cb *self); 00041 00042 void irlan_client_parse_response(struct irlan_cb *self, struct sk_buff *skb); 00043 void irlan_client_get_value_confirm(int result, __u16 obj_id, 00044 struct ias_value *value, void *priv); 00045 #endif