1 /* SPDX-License-Identifier: LGPL-2.1-only */ 2 /* 3 * Copyright (c) 2008-2009 Thomas Graf <tgraf@suug.ch> 4 */ 5 6 #ifndef __NETLINK_CLI_ROUTE_H_ 7 #define __NETLINK_CLI_ROUTE_H_ 8 9 #include <netlink/route/route.h> 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 extern struct rtnl_route *nl_cli_route_alloc(void); 16 17 extern struct nl_cache *nl_cli_route_alloc_cache(struct nl_sock *, int); 18 19 extern void nl_cli_route_parse_family(struct rtnl_route *, char *); 20 extern void nl_cli_route_parse_dst(struct rtnl_route *, char *); 21 extern void nl_cli_route_parse_src(struct rtnl_route *, char *); 22 extern void nl_cli_route_parse_pref_src(struct rtnl_route *, char *); 23 extern void nl_cli_route_parse_metric(struct rtnl_route *, char *); 24 extern void nl_cli_route_parse_nexthop(struct rtnl_route *, char *, struct nl_cache *); 25 extern void nl_cli_route_parse_table(struct rtnl_route *, char *); 26 extern void nl_cli_route_parse_prio(struct rtnl_route *, char *); 27 extern void nl_cli_route_parse_scope(struct rtnl_route *, char *); 28 extern void nl_cli_route_parse_protocol(struct rtnl_route *, char *); 29 extern void nl_cli_route_parse_type(struct rtnl_route *, char *); 30 extern void nl_cli_route_parse_iif(struct rtnl_route *, char *, struct nl_cache *); 31 32 #ifdef __cplusplus 33 } 34 #endif 35 36 #endif 37