xref: /freebsd/sbin/ipf/libipf/addicmp.c (revision 315ee00f)
1 
2 /*
3  * Copyright (C) 2012 by Darren Reed.
4  *
5  * See the IPFILTER.LICENCE file for details on licencing.
6  *
7  * $Id$
8  */
9 
10 #include <ctype.h>
11 
12 #include "ipf.h"
13 
14 
15 char	*icmptypes[MAX_ICMPTYPE + 1] = {
16 	"echorep", (char *)NULL, (char *)NULL, "unreach", "squench",
17 	"redir", (char *)NULL, (char *)NULL, "echo", "routerad",
18 	"routersol", "timex", "paramprob", "timest", "timestrep",
19 	"inforeq", "inforep", "maskreq", "maskrep", "END"
20 };
21