classifier.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * netlink/route/classifier.h Classifiers
  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) 2003-2011 Thomas Graf <tgraf@suug.ch>
  10. */
  11. #ifndef NETLINK_CLASSIFIER_H_
  12. #define NETLINK_CLASSIFIER_H_
  13. #include <netlink/netlink.h>
  14. #include <netlink/cache.h>
  15. #include <netlink/route/tc.h>
  16. #include <netlink/utils.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. extern struct rtnl_cls *rtnl_cls_alloc(void);
  21. extern void rtnl_cls_put(struct rtnl_cls *);
  22. extern int rtnl_cls_alloc_cache(struct nl_sock *, int, uint32_t,
  23. struct nl_cache **);
  24. extern int rtnl_cls_build_add_request(struct rtnl_cls *, int,
  25. struct nl_msg **);
  26. extern int rtnl_cls_add(struct nl_sock *, struct rtnl_cls *, int);
  27. extern int rtnl_cls_change(struct nl_sock *, struct rtnl_cls *, int);
  28. extern int rtnl_cls_build_change_request(struct rtnl_cls *, int,
  29. struct nl_msg **);
  30. extern int rtnl_cls_build_delete_request(struct rtnl_cls *, int,
  31. struct nl_msg **);
  32. extern int rtnl_cls_delete(struct nl_sock *, struct rtnl_cls *,
  33. int);
  34. extern void rtnl_cls_set_prio(struct rtnl_cls *, uint16_t);
  35. extern uint16_t rtnl_cls_get_prio(struct rtnl_cls *);
  36. extern void rtnl_cls_set_protocol(struct rtnl_cls *, uint16_t);
  37. extern uint16_t rtnl_cls_get_protocol(struct rtnl_cls *);
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41. #endif