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_state.h (331B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _XT_STATE_H
  3. #define _XT_STATE_H
  4. #define XT_STATE_BIT(ctinfo) (1 << ((ctinfo)%IP_CT_IS_REPLY+1))
  5. #define XT_STATE_INVALID (1 << 0)
  6. #define XT_STATE_UNTRACKED (1 << (IP_CT_NUMBER + 1))
  7. struct xt_state_info {
  8. unsigned int statemask;
  9. };
  10. #endif /*_XT_STATE_H*/