PageRenderTime 68ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/include/linux/netfilter/xt_CONNMARK.h.keep.1

https://bitbucket.org/thekraven/iscream_thunderc-2.6.35
Unknown | 31 lines | 25 code | 6 blank | 0 comment | 0 complexity | 0747969489d5f3e69095d61e1109762c MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, AGPL-1.0
  1. #ifndef _XT_CONNMARK_H
  2. #define _XT_CONNMARK_H
  3. #include <linux/types.h>
  4. /* Copyright (C) 2002,2004 MARA Systems AB <http://www.marasystems.com>
  5. * by Henrik Nordstrom <hno@marasystems.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. */
  12. enum {
  13. XT_CONNMARK_SET = 0,
  14. XT_CONNMARK_SAVE,
  15. XT_CONNMARK_RESTORE
  16. };
  17. struct xt_connmark_tginfo1 {
  18. __u32 ctmark, ctmask, nfmask;
  19. __u8 mode;
  20. };
  21. struct xt_connmark_mtinfo1 {
  22. __u32 mark, mask;
  23. __u8 invert;
  24. };
  25. #endif /*_XT_CONNMARK_H*/