logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

tc_defact.h (322B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef __LINUX_TC_DEF_H
  3. #define __LINUX_TC_DEF_H
  4. #include <linux/pkt_cls.h>
  5. struct tc_defact {
  6. tc_gen;
  7. };
  8. enum {
  9. TCA_DEF_UNSPEC,
  10. TCA_DEF_TM,
  11. TCA_DEF_PARMS,
  12. TCA_DEF_DATA,
  13. TCA_DEF_PAD,
  14. __TCA_DEF_MAX
  15. };
  16. #define TCA_DEF_MAX (__TCA_DEF_MAX - 1)
  17. #endif