route.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  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. #ifndef __NETLINK_CLI_ROUTE_H_
  12. #define __NETLINK_CLI_ROUTE_H_
  13. #include <netlink/route/route.h>
  14. extern struct rtnl_route *nl_cli_route_alloc(void);
  15. extern struct nl_cache *nl_cli_route_alloc_cache(struct nl_sock *, int);
  16. extern void nl_cli_route_parse_family(struct rtnl_route *, char *);
  17. extern void nl_cli_route_parse_dst(struct rtnl_route *, char *);
  18. extern void nl_cli_route_parse_src(struct rtnl_route *, char *);
  19. extern void nl_cli_route_parse_pref_src(struct rtnl_route *, char *);
  20. extern void nl_cli_route_parse_metric(struct rtnl_route *, char *);
  21. extern void nl_cli_route_parse_nexthop(struct rtnl_route *, char *, struct nl_cache *);
  22. extern void nl_cli_route_parse_table(struct rtnl_route *, char *);
  23. extern void nl_cli_route_parse_prio(struct rtnl_route *, char *);
  24. extern void nl_cli_route_parse_scope(struct rtnl_route *, char *);
  25. extern void nl_cli_route_parse_protocol(struct rtnl_route *, char *);
  26. extern void nl_cli_route_parse_type(struct rtnl_route *, char *);
  27. extern void nl_cli_route_parse_iif(struct rtnl_route *, char *, struct nl_cache *);
  28. #endif