Initial import from FreeBSD RELENG_4:
[dragonfly.git] / sys / net / i4b / include / i4b_l2l3.h
1 /*
2  * Copyright (c) 1997, 1999 Hellmuth Michaelis. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23  * SUCH DAMAGE.
24  *
25  *---------------------------------------------------------------------------
26  *
27  *      i4b_l2l3.h - i4b layer 2 / layer 3 interactions
28  *      -----------------------------------------------
29  *
30  *      $Id: i4b_l2l3.h,v 1.8 2000/06/02 16:14:35 hm Exp $
31  *
32  * $FreeBSD: src/sys/i4b/include/i4b_l2l3.h,v 1.6.2.1 2001/08/10 14:08:36 obrien Exp $
33  *
34  *      last edit-date: [Fri Jun  2 14:33:34 2000]
35  *
36  *---------------------------------------------------------------------------*/
37
38 #ifndef _I4B_L2L3_H_
39 #define _I4B_L2L3_H_
40
41 extern struct i4b_l2l3_func i4b_l2l3_func;
42
43 struct i4b_l2l3_func
44 {
45         /* Layer 2 --> Layer 3 */
46         /* =================== */
47
48         int     (*DL_ESTABLISH_IND) (int);
49         int     (*DL_ESTABLISH_CNF) (int);
50         
51         int     (*DL_RELEASE_IND) (int);
52         int     (*DL_RELEASE_CNF) (int);
53
54         int     (*DL_DATA_IND) (int, struct mbuf *);
55
56         int     (*DL_UNIT_DATA_IND) (int, struct mbuf *);       
57         
58 #define DL_Est_Ind(unit)                \
59         ((*i4b_l2l3_func.DL_ESTABLISH_IND)(unit))
60 #define DL_Est_Cnf(unit)                \
61         ((*i4b_l2l3_func.DL_ESTABLISH_CNF)(unit))
62 #define DL_Rel_Ind(unit)                \
63         ((*i4b_l2l3_func.DL_RELEASE_IND)(unit))
64 #define DL_Rel_Cnf(unit)                \
65         ((*i4b_l2l3_func.DL_RELEASE_CNF)(unit))
66 #define DL_Data_Ind(unit, data)         \
67         ((*i4b_l2l3_func.DL_DATA_IND)(unit, data))
68 #define DL_Unit_Data_Ind(unit, data)    \
69         ((*i4b_l2l3_func.DL_UNIT_DATA_IND)(unit, data))
70         
71 #define DL_Est_Ind_A                    \
72         (i4b_l2l3_func.DL_ESTABLISH_IND)
73 #define DL_Est_Cnf_A                    \
74         (i4b_l2l3_func.DL_ESTABLISH_CNF)
75 #define DL_Rel_Ind_A                    \
76         (i4b_l2l3_func.DL_RELEASE_IND)
77 #define DL_Rel_Cnf_A                    \
78         (i4b_l2l3_func.DL_RELEASE_CNF)
79         
80         /* Layer 3 --> Layer 2 */       
81         /* =================== */
82
83         int     (*DL_ESTABLISH_REQ) (int);
84         
85         int     (*DL_RELEASE_REQ) (int);
86
87         int     (*DL_DATA_REQ) (int, struct mbuf *);
88
89         int     (*DL_UNIT_DATA_REQ) (int, struct mbuf *);       
90         
91 #define DL_Est_Req(unit)                \
92         ((*i4b_l2l3_func.DL_ESTABLISH_REQ)(unit))
93 #define DL_Rel_Req(unit)                \
94         ((*i4b_l2l3_func.DL_RELEASE_REQ)(unit))
95 #define DL_Data_Req(unit, data)         \
96         ((*i4b_l2l3_func.DL_DATA_REQ)(unit, data))
97 #define DL_Unit_Data_Req(unit, data)    \
98         ((*i4b_l2l3_func.DL_UNIT_DATA_REQ)(unit, data))
99
100         /* Layer 2 --> Layer 3 management */
101         /* ============================== */
102
103         int     (*MDL_STATUS_IND) (int, int, int);      /* L2 --> L3 status */
104         
105 #define MDL_Status_Ind(unit, status, parm)              \
106         ((*i4b_l2l3_func.MDL_STATUS_IND)(unit, status, parm))
107
108         /* Layer 3 --> Layer 2 management */
109         /* ============================== */
110
111         int     (*MDL_COMMAND_REQ) (int, int, void *);  /* L3 --> L2 command */
112
113 #define MDL_Command_Req(unit, command, parm)            \
114         ((*i4b_l2l3_func.MDL_COMMAND_REQ)(unit, command, parm))
115 };
116
117 #endif /* _I4B_L2L3_H_ */
118