diff options
author | David Howells <dhowells@redhat.com> | 2012-10-13 05:46:48 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2012-10-13 05:46:48 -0400 |
commit | 607ca46e97a1b6594b29647d98a32d545c24bdff (patch) | |
tree | 30f4c0784bfddb57332cdc0678bd06d1e77fa185 /include/uapi/linux/atmarp.h | |
parent | 08cce05c5a91f5017f4edc9866cf026908c73f9f (diff) |
UAPI: (Scripted) Disintegrate include/linux
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Michael Kerrisk <mtk.manpages@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Acked-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'include/uapi/linux/atmarp.h')
-rw-r--r-- | include/uapi/linux/atmarp.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/include/uapi/linux/atmarp.h b/include/uapi/linux/atmarp.h new file mode 100644 index 00000000000..231f4bdec73 --- /dev/null +++ b/include/uapi/linux/atmarp.h | |||
@@ -0,0 +1,41 @@ | |||
1 | /* atmarp.h - ATM ARP protocol and kernel-demon interface definitions */ | ||
2 | |||
3 | /* Written 1995-1999 by Werner Almesberger, EPFL LRC/ICA */ | ||
4 | |||
5 | |||
6 | #ifndef _LINUX_ATMARP_H | ||
7 | #define _LINUX_ATMARP_H | ||
8 | |||
9 | #include <linux/types.h> | ||
10 | #include <linux/atmapi.h> | ||
11 | #include <linux/atmioc.h> | ||
12 | |||
13 | |||
14 | #define ATMARP_RETRY_DELAY 30 /* request next resolution or forget | ||
15 | NAK after 30 sec - should go into | ||
16 | atmclip.h */ | ||
17 | #define ATMARP_MAX_UNRES_PACKETS 5 /* queue that many packets while | ||
18 | waiting for the resolver */ | ||
19 | |||
20 | |||
21 | #define ATMARPD_CTRL _IO('a',ATMIOC_CLIP+1) /* become atmarpd ctrl sock */ | ||
22 | #define ATMARP_MKIP _IO('a',ATMIOC_CLIP+2) /* attach socket to IP */ | ||
23 | #define ATMARP_SETENTRY _IO('a',ATMIOC_CLIP+3) /* fill or hide ARP entry */ | ||
24 | #define ATMARP_ENCAP _IO('a',ATMIOC_CLIP+5) /* change encapsulation */ | ||
25 | |||
26 | |||
27 | enum atmarp_ctrl_type { | ||
28 | act_invalid, /* catch uninitialized structures */ | ||
29 | act_need, /* need address resolution */ | ||
30 | act_up, /* interface is coming up */ | ||
31 | act_down, /* interface is going down */ | ||
32 | act_change /* interface configuration has changed */ | ||
33 | }; | ||
34 | |||
35 | struct atmarp_ctrl { | ||
36 | enum atmarp_ctrl_type type; /* message type */ | ||
37 | int itf_num;/* interface number (if present) */ | ||
38 | __be32 ip; /* IP address (act_need only) */ | ||
39 | }; | ||
40 | |||
41 | #endif | ||