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
17extern struct rtnl_route *nl_cli_route_alloc(void);
18
19extern struct nl_cache *nl_cli_route_alloc_cache(struct nl_sock *, int);
20
21extern void	nl_cli_route_parse_family(struct rtnl_route *, char *);
22extern void	nl_cli_route_parse_dst(struct rtnl_route *, char *);
23extern void	nl_cli_route_parse_src(struct rtnl_route *, char *);
24extern void	nl_cli_route_parse_pref_src(struct rtnl_route *, char *);
25extern void	nl_cli_route_parse_metric(struct rtnl_route *, char *);
26extern void	nl_cli_route_parse_nexthop(struct rtnl_route *, char *, struct nl_cache *);
27extern void	nl_cli_route_parse_table(struct rtnl_route *, char *);
28extern void	nl_cli_route_parse_prio(struct rtnl_route *, char *);
29extern void	nl_cli_route_parse_scope(struct rtnl_route *, char *);
30extern void	nl_cli_route_parse_protocol(struct rtnl_route *, char *);
31extern void	nl_cli_route_parse_type(struct rtnl_route *, char *);
32extern void	nl_cli_route_parse_iif(struct rtnl_route *, char *, struct nl_cache *);
33
34#endif
35