summaryrefslogtreecommitdiff
path: root/dist/ipf/lib/icmpcode.c
diff options
context:
space:
mode:
Diffstat (limited to 'dist/ipf/lib/icmpcode.c')
-rw-r--r--dist/ipf/lib/icmpcode.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/dist/ipf/lib/icmpcode.c b/dist/ipf/lib/icmpcode.c
deleted file mode 100644
index 9b89eeb626c..00000000000
--- a/dist/ipf/lib/icmpcode.c
+++ /dev/null
@@ -1,24 +0,0 @@
-/* $NetBSD: icmpcode.c,v 1.9 2012/02/15 17:55:06 riz Exp $ */
-
-/*
- * Copyright (C) 2000-2006 by Darren Reed.
- *
- * See the IPFILTER.LICENCE file for details on licencing.
- *
- * Id: icmpcode.c,v 1.7.2.5 2006/06/16 17:21:02 darrenr Exp
- */
-
-#include <ctype.h>
-
-#include "ipf.h"
-
-#ifndef MIN
-# define MIN(a,b) ((a) > (b) ? (b) : (a))
-#endif
-
-
-char *icmpcodes[MAX_ICMPCODE + 1] = {
- "net-unr", "host-unr", "proto-unr", "port-unr", "needfrag", "srcfail",
- "net-unk", "host-unk", "isolate", "net-prohib", "host-prohib",
- "net-tos", "host-tos", "filter-prohib", "host-preced", "preced-cutoff",
- NULL };