blob: 6093adfec10180a9a9c0b9dbe3b5b51f43c93747 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* ipddp.h: Header for IP-over-DDP driver for Linux.
*/
#ifndef __LINUX_IPDDP_H
#define __LINUX_IPDDP_H
#ifdef __KERNEL__
#define SIOCADDIPDDPRT SIOCDEVPRIVATE
#define SIOCDELIPDDPRT SIOCDEVPRIVATE+1
#define SIOCFINDIPDDPRT SIOCDEVPRIVATE+2
struct ipddp_route
{
struct device *dev; /* Carrier device */
__u32 ip; /* IP address */
struct at_addr at; /* Gateway appletalk address */
int flags;
struct ipddp_route *next;
};
static struct ipddp_route *ipddp_route_head;
static struct ipddp_route ipddp_route_test;
#endif /* __KERNEL__ */
#endif /* __LINUX_IPDDP_H */
|