1 /* 2 * netlink/cli//route.h CLI Route Helpers 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Lesser General Public 6 * License as published by the Free Software Foundation version 2.1 7 * of the License. 8 * 9 * Copyright (c) 2008-2009 Thomas Graf <tgraf@suug.ch> 10 */ 11 12 #ifndef __NETLINK_CLI_ROUTE_H_ 13 #define __NETLINK_CLI_ROUTE_H_ 14 15 #include <netlink/route/route.h> 16 17 extern struct rtnl_route *nl_cli_route_alloc(void); 18 19 extern struct nl_cache *nl_cli_route_alloc_cache(struct nl_sock *, int); 20 21 extern void nl_cli_route_parse_family(struct rtnl_route *, char *); 22 extern void nl_cli_route_parse_dst(struct rtnl_route *, char *); 23 extern void nl_cli_route_parse_src(struct rtnl_route *, char *); 24 extern void nl_cli_route_parse_pref_src(struct rtnl_route *, char *); 25 extern void nl_cli_route_parse_metric(struct rtnl_route *, char *); 26 extern void nl_cli_route_parse_nexthop(struct rtnl_route *, char *, struct nl_cache *); 27 extern void nl_cli_route_parse_table(struct rtnl_route *, char *); 28 extern void nl_cli_route_parse_prio(struct rtnl_route *, char *); 29 extern void nl_cli_route_parse_scope(struct rtnl_route *, char *); 30 extern void nl_cli_route_parse_protocol(struct rtnl_route *, char *); 31 extern void nl_cli_route_parse_type(struct rtnl_route *, char *); 32 extern void nl_cli_route_parse_iif(struct rtnl_route *, char *, struct nl_cache *); 33 34 #endif 35