xref: /netbsd/external/bsd/ipf/dist/lib/addicmp.c (revision f52ace7a)
1 /*	$NetBSD: addicmp.c,v 1.2 2012/07/22 14:27:36 darrenr Exp $	*/
2 
3 /*
4  * Copyright (C) 2012 by Darren Reed.
5  *
6  * See the IPFILTER.LICENCE file for details on licencing.
7  *
8  * Id: addicmp.c,v 1.1.1.2 2012/07/22 13:44:38 darrenr Exp $
9  */
10 
11 #include <ctype.h>
12 
13 #include "ipf.h"
14 
15 
16 char	*icmptypes[MAX_ICMPTYPE + 1] = {
17 	"echorep", (char *)NULL, (char *)NULL, "unreach", "squench",
18 	"redir", (char *)NULL, (char *)NULL, "echo", "routerad",
19 	"routersol", "timex", "paramprob", "timest", "timestrep",
20 	"inforeq", "inforep", "maskreq", "maskrep", "END"
21 };
22