kernel: Sync ACPICA with Intel's version 20140424.
[dragonfly.git] / sys / netproto / atm / ipatm / ipatm.h
1 /*
2  *
3  * ===================================
4  * HARP  |  Host ATM Research Platform
5  * ===================================
6  *
7  *
8  * This Host ATM Research Platform ("HARP") file (the "Software") is
9  * made available by Network Computing Services, Inc. ("NetworkCS")
10  * "AS IS".  NetworkCS does not provide maintenance, improvements or
11  * support of any kind.
12  *
13  * NETWORKCS MAKES NO WARRANTIES OR REPRESENTATIONS, EXPRESS OR IMPLIED,
14  * INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY
15  * AND FITNESS FOR A PARTICULAR PURPOSE, AS TO ANY ELEMENT OF THE
16  * SOFTWARE OR ANY SUPPORT PROVIDED IN CONNECTION WITH THIS SOFTWARE.
17  * In no event shall NetworkCS be responsible for any damages, including
18  * but not limited to consequential damages, arising from or relating to
19  * any use of the Software or related support.
20  *
21  * Copyright 1994-1998 Network Computing Services, Inc.
22  *
23  * Copies of this Software may be made, however, the above copyright
24  * notice must be reproduced on all copies.
25  *
26  *      @(#) $FreeBSD: src/sys/netatm/ipatm/ipatm.h,v 1.2 1999/08/28 00:48:43 peter Exp $
27  *      @(#) $DragonFly: src/sys/netproto/atm/ipatm/ipatm.h,v 1.2 2003/06/17 04:28:49 dillon Exp $
28  *
29  */
30
31 /*
32  * IP Over ATM Support
33  * -------------------
34  *
35  * Protocol definitions
36  *
37  */
38
39 #ifndef _IPATM_IPATM_H
40 #define _IPATM_IPATM_H
41
42 /*
43  * Protocol Variables
44  */
45 #define IPATM_VCIDLE            15              /* VCC idle time (minutes) */
46 #define IPATM_ARP_TIME          (60 * ATM_HZ)   /* Wait for ARP answer */
47 #define IPATM_SVC_TIME          (60 * ATM_HZ)   /* Wait for SVC open answer */
48 #define IPATM_IDLE_TIME         (60 * ATM_HZ)   /* VCC idle timer tick */
49
50 /*
51  * IP/ATM LLC/SNAP header
52  */
53 #define IPATM_LLC_LEN           8
54 #define IPATM_LLC_HDR           {0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00, 0x08, 0x00}
55
56 #endif  /* _IPATM_IPATM_H */