summaryrefslogtreecommitdiff
path: root/dist/ipf/lib/flags.c
diff options
context:
space:
mode:
Diffstat (limited to 'dist/ipf/lib/flags.c')
-rw-r--r--dist/ipf/lib/flags.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/dist/ipf/lib/flags.c b/dist/ipf/lib/flags.c
deleted file mode 100644
index 0985d0c2028..00000000000
--- a/dist/ipf/lib/flags.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/* $NetBSD: flags.c,v 1.2 2012/02/15 17:55:06 riz Exp $ */
-
-/*
- * Copyright (C) 2001-2002 by Darren Reed.
- *
- * See the IPFILTER.LICENCE file for details on licencing.
- *
- * Id: flags.c,v 1.4.4.1 2006/06/16 17:20:58 darrenr Exp
- */
-
-#include "ipf.h"
-
-/*
- * ECN is a new addition to TCP - RFC 2481
- */
-#ifndef TH_ECN
-# define TH_ECN 0x40
-#endif
-#ifndef TH_CWR
-# define TH_CWR 0x80
-#endif
-
-char flagset[] = "FSRPAUEC";
-u_char flags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH, TH_ACK, TH_URG,
- TH_ECN, TH_CWR };