1 /*
2  * This file is auto-generated. Modifications will be lost.
3  *
4  * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5  * for more information.
6  */
7 #ifndef _LINUX_ATMARP_H
8 #define _LINUX_ATMARP_H
9 #include <linux/types.h>
10 #include <linux/atmapi.h>
11 #include <linux/atmioc.h>
12 #define ATMARP_RETRY_DELAY 30
13 #define ATMARP_MAX_UNRES_PACKETS 5
14 #define ATMARPD_CTRL _IO('a', ATMIOC_CLIP + 1)
15 #define ATMARP_MKIP _IO('a', ATMIOC_CLIP + 2)
16 #define ATMARP_SETENTRY _IO('a', ATMIOC_CLIP + 3)
17 #define ATMARP_ENCAP _IO('a', ATMIOC_CLIP + 5)
18 enum atmarp_ctrl_type {
19   act_invalid,
20   act_need,
21   act_up,
22   act_down,
23   act_change
24 };
25 struct atmarp_ctrl {
26   enum atmarp_ctrl_type type;
27   int itf_num;
28   __be32 ip;
29 };
30 #endif
31