#if HAVE_AFINET6 -> #ifdef HAVE_AFINET6
[oweals/busybox.git] / networking / libiproute / libnetlink.h
1 /* vi: set sw=4 ts=4: */
2 #ifndef __LIBNETLINK_H__
3 #define __LIBNETLINK_H__ 1
4
5 #include <asm/types.h>
6 #include <linux/netlink.h>
7 #include <linux/rtnetlink.h>
8
9 struct rtnl_handle
10 {
11         int                     fd;
12         struct sockaddr_nl      local;
13         struct sockaddr_nl      peer;
14         __u32                   seq;
15         __u32                   dump;
16 };
17
18 extern int rtnl_open(struct rtnl_handle *rth, unsigned subscriptions);
19 extern void rtnl_close(struct rtnl_handle *rth);
20 extern int rtnl_wilddump_request(struct rtnl_handle *rth, int fam, int type);
21 extern int rtnl_dump_request(struct rtnl_handle *rth, int type, void *req, int len);
22 extern int rtnl_dump_filter(struct rtnl_handle *rth,
23                         int (*filter)(struct sockaddr_nl*, struct nlmsghdr *n, void*),
24                         void *arg1,
25                         int (*junk)(struct sockaddr_nl *, struct nlmsghdr *n, void *),
26                         void *arg2);
27 extern int rtnl_talk(struct rtnl_handle *rtnl, struct nlmsghdr *n, pid_t peer,
28                         unsigned groups, struct nlmsghdr *answer,
29                         int (*junk)(struct sockaddr_nl *,struct nlmsghdr *n, void *),
30                         void *jarg);
31 extern int rtnl_send(struct rtnl_handle *rth, char *buf, int);
32
33
34 extern int addattr32(struct nlmsghdr *n, int maxlen, int type, __u32 data);
35 extern int addattr_l(struct nlmsghdr *n, int maxlen, int type, void *data, int alen);
36 extern int rta_addattr32(struct rtattr *rta, int maxlen, int type, __u32 data);
37 extern int rta_addattr_l(struct rtattr *rta, int maxlen, int type, void *data, int alen);
38
39 extern int parse_rtattr(struct rtattr *tb[], int max, struct rtattr *rta, int len);
40
41
42 #endif /* __LIBNETLINK_H__ */
43