1 /*********************************************************************
4 * Filename: irlap_event.h
7 * Status: Experimental.
8 * Author: Dag Brattli <dagb@cs.uit.no>
9 * Created at: Sat Aug 16 00:59:29 1997
10 * Modified at: Tue Dec 21 11:20:30 1999
11 * Modified by: Dag Brattli <dagb@cs.uit.no>
13 * Copyright (c) 1998-1999 Dag Brattli <dagb@cs.uit.no>,
14 * All Rights Reserved.
15 * Copyright (c) 2000-2002 Jean Tourrilhes <jt@hpl.hp.com>
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of
20 * the License, or (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 ********************************************************************/
37 #include <net/irda/irda.h>
39 /* A few forward declarations (to make compiler happy) */
45 LAP_NDM
, /* Normal disconnected mode */
48 LAP_CONN
, /* Connect indication */
49 LAP_SETUP
, /* Setting up connection */
50 LAP_OFFLINE
, /* A really boring state */
53 LAP_NRM_P
, /* Normal response mode as primary */
56 LAP_NRM_S
, /* Normal response mode as secondary */
78 RECV_DISCOVERY_XID_CMD
,
79 RECV_DISCOVERY_XID_RSP
,
105 DISCOVERY_TIMER_EXPIRED
,
107 BACKOFF_TIMER_EXPIRED
,
108 MEDIA_BUSY_TIMER_EXPIRED
,
112 * Disconnect reason code
114 typedef enum { /* FIXME check the two first reason codes */
115 LAP_DISC_INDICATION
=1, /* Received a disconnect request from peer */
116 LAP_NO_RESPONSE
, /* To many retransmits without response */
117 LAP_RESET_INDICATION
, /* To many retransmits, or invalid nr/ns */
118 LAP_FOUND_NONE
, /* No devices were discovered */
120 LAP_PRIMARY_CONFLICT
,
123 extern const char *const irlap_state
[];
125 void irlap_do_event(struct irlap_cb
*self
, IRLAP_EVENT event
,
126 struct sk_buff
*skb
, struct irlap_info
*info
);
127 void irlap_print_event(IRLAP_EVENT event
);
129 extern int irlap_qos_negotiate(struct irlap_cb
*self
, struct sk_buff
*skb
);