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

xt_dccp.h (483B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _XT_DCCP_H_
  3. #define _XT_DCCP_H_
  4. #include <linux/types.h>
  5. #define XT_DCCP_SRC_PORTS 0x01
  6. #define XT_DCCP_DEST_PORTS 0x02
  7. #define XT_DCCP_TYPE 0x04
  8. #define XT_DCCP_OPTION 0x08
  9. #define XT_DCCP_VALID_FLAGS 0x0f
  10. struct xt_dccp_info {
  11. __u16 dpts[2]; /* Min, Max */
  12. __u16 spts[2]; /* Min, Max */
  13. __u16 flags;
  14. __u16 invflags;
  15. __u16 typemask;
  16. __u8 option;
  17. };
  18. #endif /* _XT_DCCP_H_ */