diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/linux/concap.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'include/linux/concap.h')
-rw-r--r-- | include/linux/concap.h | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/include/linux/concap.h b/include/linux/concap.h new file mode 100644 index 000000000000..27304651d700 --- /dev/null +++ b/include/linux/concap.h | |||
@@ -0,0 +1,113 @@ | |||
1 | /* $Id: concap.h,v 1.3.2.2 2004/01/12 23:08:35 keil Exp $ | ||
2 | * | ||
3 | * Copyright 1997 by Henner Eisen <eis@baty.hanse.de> | ||
4 | * | ||
5 | * This software may be used and distributed according to the terms | ||
6 | * of the GNU General Public License, incorporated herein by reference. | ||
7 | */ | ||
8 | |||
9 | #ifndef _LINUX_CONCAP_H | ||
10 | #define _LINUX_CONCAP_H | ||
11 | #ifdef __KERNEL__ | ||
12 | #include <linux/skbuff.h> | ||
13 | #include <linux/netdevice.h> | ||
14 | |||
15 | /* Stuff to support encapsulation protocols genericly. The encapsulation | ||
16 | protocol is processed at the uppermost layer of the network interface. | ||
17 | |||
18 | Based on a ideas developed in a 'synchronous device' thread in the | ||
19 | linux-x25 mailing list contributed by Alan Cox, Thomasz Motylewski | ||
20 | and Jonathan Naylor. | ||
21 | |||
22 | For more documetation on this refer to Documentation/isdn/README.concap | ||
23 | */ | ||
24 | |||
25 | struct concap_proto_ops; | ||
26 | struct concap_device_ops; | ||
27 | |||
28 | /* this manages all data needed by the encapsulation protocol | ||
29 | */ | ||
30 | struct concap_proto{ | ||
31 | struct net_device *net_dev; /* net device using our service */ | ||
32 | struct concap_device_ops *dops; /* callbacks provided by device */ | ||
33 | struct concap_proto_ops *pops; /* callbacks provided by us */ | ||
34 | spinlock_t lock; | ||
35 | int flags; | ||
36 | void *proto_data; /* protocol specific private data, to | ||
37 | be accessed via *pops methods only*/ | ||
38 | /* | ||
39 | : | ||
40 | whatever | ||
41 | : | ||
42 | */ | ||
43 | }; | ||
44 | |||
45 | /* Operations to be supported by the net device. Called by the encapsulation | ||
46 | * protocol entity. No receive method is offered because the encapsulation | ||
47 | * protocol directly calls netif_rx(). | ||
48 | */ | ||
49 | struct concap_device_ops{ | ||
50 | |||
51 | /* to request data is submitted by device*/ | ||
52 | int (*data_req)(struct concap_proto *, struct sk_buff *); | ||
53 | |||
54 | /* Control methods must be set to NULL by devices which do not | ||
55 | support connection control.*/ | ||
56 | /* to request a connection is set up */ | ||
57 | int (*connect_req)(struct concap_proto *); | ||
58 | |||
59 | /* to request a connection is released */ | ||
60 | int (*disconn_req)(struct concap_proto *); | ||
61 | }; | ||
62 | |||
63 | /* Operations to be supported by the encapsulation protocol. Called by | ||
64 | * device driver. | ||
65 | */ | ||
66 | struct concap_proto_ops{ | ||
67 | |||
68 | /* create a new encapsulation protocol instance of same type */ | ||
69 | struct concap_proto * (*proto_new) (void); | ||
70 | |||
71 | /* delete encapsulation protocol instance and free all its resources. | ||
72 | cprot may no loger be referenced after calling this */ | ||
73 | void (*proto_del)(struct concap_proto *cprot); | ||
74 | |||
75 | /* initialize the protocol's data. To be called at interface startup | ||
76 | or when the device driver resets the interface. All services of the | ||
77 | encapsulation protocol may be used after this*/ | ||
78 | int (*restart)(struct concap_proto *cprot, | ||
79 | struct net_device *ndev, | ||
80 | struct concap_device_ops *dops); | ||
81 | |||
82 | /* inactivate an encapsulation protocol instance. The encapsulation | ||
83 | protocol may not call any *dops methods after this. */ | ||
84 | int (*close)(struct concap_proto *cprot); | ||
85 | |||
86 | /* process a frame handed down to us by upper layer */ | ||
87 | int (*encap_and_xmit)(struct concap_proto *cprot, struct sk_buff *skb); | ||
88 | |||
89 | /* to be called for each data entity received from lower layer*/ | ||
90 | int (*data_ind)(struct concap_proto *cprot, struct sk_buff *skb); | ||
91 | |||
92 | /* to be called when a connection was set up/down. | ||
93 | Protocols that don't process these primitives might fill in | ||
94 | dummy methods here */ | ||
95 | int (*connect_ind)(struct concap_proto *cprot); | ||
96 | int (*disconn_ind)(struct concap_proto *cprot); | ||
97 | /* | ||
98 | Some network device support functions, like net_header(), rebuild_header(), | ||
99 | and others, that depend solely on the encapsulation protocol, might | ||
100 | be provided here, too. The net device would just fill them in its | ||
101 | corresponding fields when it is opened. | ||
102 | */ | ||
103 | }; | ||
104 | |||
105 | /* dummy restart/close/connect/reset/disconn methods | ||
106 | */ | ||
107 | extern int concap_nop(struct concap_proto *cprot); | ||
108 | |||
109 | /* dummy submit method | ||
110 | */ | ||
111 | extern int concap_drop_skb(struct concap_proto *cprot, struct sk_buff *skb); | ||
112 | #endif | ||
113 | #endif | ||