• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: LGPL-2.1-only */
2 /*
3  * Copyright (c) 2003-2006 Thomas Graf <tgraf@suug.ch>
4  */
5 
6 #ifndef NETLINK_U32_H_
7 #define NETLINK_U32_H_
8 
9 #include <netlink/netlink.h>
10 #include <netlink/cache.h>
11 #include <netlink/route/classifier.h>
12 #include <netlink/route/action.h>
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 extern void	rtnl_u32_set_handle(struct rtnl_cls *, int, int, int);
19 extern int	rtnl_u32_set_classid(struct rtnl_cls *, uint32_t);
20 extern int	rtnl_u32_get_classid(struct rtnl_cls *, uint32_t *);
21 extern int	rtnl_u32_set_divisor(struct rtnl_cls *, uint32_t);
22 extern int	rtnl_u32_set_link(struct rtnl_cls *, uint32_t);
23 extern int	rtnl_u32_set_hashtable(struct rtnl_cls *, uint32_t);
24 extern int	rtnl_u32_set_hashmask(struct rtnl_cls *, uint32_t, uint32_t);
25 extern int	rtnl_u32_set_selector(struct rtnl_cls *, int, uint32_t, char, uint16_t, char);
26 extern int	rtnl_u32_set_cls_terminal(struct rtnl_cls *);
27 
28 extern int	rtnl_u32_set_flags(struct rtnl_cls *, int);
29 extern int	rtnl_u32_add_mark(struct rtnl_cls *, uint32_t, uint32_t);
30 extern int	rtnl_u32_del_mark(struct rtnl_cls *);
31 extern int	rtnl_u32_add_key(struct rtnl_cls *, uint32_t, uint32_t,
32 				 int, int);
33 extern int	rtnl_u32_get_key(struct rtnl_cls *, uint8_t, uint32_t *, uint32_t *,
34 				 int *, int *);
35 extern int	rtnl_u32_add_key_uint8(struct rtnl_cls *, uint8_t, uint8_t,
36 				       int, int);
37 extern int	rtnl_u32_add_key_uint16(struct rtnl_cls *, uint16_t, uint16_t,
38 					int, int);
39 extern int	rtnl_u32_add_key_uint32(struct rtnl_cls *, uint32_t, uint32_t,
40 					int, int);
41 extern int	rtnl_u32_add_key_in_addr(struct rtnl_cls *, const struct in_addr *,
42 					 uint8_t, int, int);
43 extern int	rtnl_u32_add_key_in6_addr(struct rtnl_cls *, const struct in6_addr *,
44 					  uint8_t, int, int);
45 extern int	rtnl_u32_add_action(struct rtnl_cls *, struct rtnl_act *);
46 extern int	rtnl_u32_del_action(struct rtnl_cls *, struct rtnl_act *);
47 extern struct rtnl_act* rtnl_u32_get_action(struct rtnl_cls *);
48 
49 #ifdef __cplusplus
50 }
51 #endif
52 
53 #endif
54