diff options
Diffstat (limited to 'networking/libiproute/libnetlink.h')
-rw-r--r-- | networking/libiproute/libnetlink.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/networking/libiproute/libnetlink.h b/networking/libiproute/libnetlink.h index 11a4a100a..41ecfa6d0 100644 --- a/networking/libiproute/libnetlink.h +++ b/networking/libiproute/libnetlink.h | |||
@@ -23,16 +23,16 @@ extern void rtnl_close(struct rtnl_handle *rth) FAST_FUNC; | |||
23 | extern int xrtnl_wilddump_request(struct rtnl_handle *rth, int fam, int type) FAST_FUNC; | 23 | extern int xrtnl_wilddump_request(struct rtnl_handle *rth, int fam, int type) FAST_FUNC; |
24 | extern int rtnl_dump_request(struct rtnl_handle *rth, int type, void *req, int len) FAST_FUNC; | 24 | extern int rtnl_dump_request(struct rtnl_handle *rth, int type, void *req, int len) FAST_FUNC; |
25 | extern int xrtnl_dump_filter(struct rtnl_handle *rth, | 25 | extern int xrtnl_dump_filter(struct rtnl_handle *rth, |
26 | int (*filter)(const struct sockaddr_nl*, struct nlmsghdr *n, void*), | 26 | int (*filter)(const struct sockaddr_nl*, struct nlmsghdr *n, void*) FAST_FUNC, |
27 | void *arg1) FAST_FUNC; | 27 | void *arg1) FAST_FUNC; |
28 | 28 | ||
29 | /* bbox doesn't use parameters no. 3, 4, 6, 7, stub them out */ | 29 | /* bbox doesn't use parameters no. 3, 4, 6, 7, stub them out */ |
30 | #define rtnl_talk(rtnl, n, peer, groups, answer, junk, jarg) \ | 30 | #define rtnl_talk(rtnl, n, peer, groups, answer, junk, jarg) \ |
31 | rtnl_talk(rtnl, n, answer) | 31 | rtnl_talk(rtnl, n, answer) |
32 | extern int rtnl_talk(struct rtnl_handle *rtnl, struct nlmsghdr *n, pid_t peer, | 32 | extern int rtnl_talk(struct rtnl_handle *rtnl, struct nlmsghdr *n, pid_t peer, |
33 | unsigned groups, struct nlmsghdr *answer, | 33 | unsigned groups, struct nlmsghdr *answer, |
34 | int (*junk)(struct sockaddr_nl *,struct nlmsghdr *n, void *), | 34 | int (*junk)(struct sockaddr_nl *,struct nlmsghdr *n, void *), |
35 | void *jarg) FAST_FUNC; | 35 | void *jarg) FAST_FUNC; |
36 | 36 | ||
37 | extern int rtnl_send(struct rtnl_handle *rth, char *buf, int) FAST_FUNC; | 37 | extern int rtnl_send(struct rtnl_handle *rth, char *buf, int) FAST_FUNC; |
38 | 38 | ||