1 /* $FreeBSD$ */ 2 3 /* 4 * Copyright (C) 2012 by Darren Reed. 5 * 6 * See the IPFILTER.LICENCE file for details on licencing. 7 * 8 * $Id$ 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