1145519Sdarrenr/*	$FreeBSD$	*/
2145510Sdarrenr
3145510Sdarrenr/*
4255332Scy * Copyright (C) 2012 by Darren Reed.
5145510Sdarrenr *
6145510Sdarrenr * See the IPFILTER.LICENCE file for details on licencing.
7145510Sdarrenr *
8255332Scy * $Id$
9145510Sdarrenr */
10145510Sdarrenr
11145510Sdarrenr#include <ctype.h>
12145510Sdarrenr
13145510Sdarrenr#include "ipf.h"
14145510Sdarrenr
15145510Sdarrenr
16145510Sdarrenrchar	*icmptypes[MAX_ICMPTYPE + 1] = {
17145510Sdarrenr	"echorep", (char *)NULL, (char *)NULL, "unreach", "squench",
18145510Sdarrenr	"redir", (char *)NULL, (char *)NULL, "echo", "routerad",
19145510Sdarrenr	"routersol", "timex", "paramprob", "timest", "timestrep",
20145510Sdarrenr	"inforeq", "inforep", "maskreq", "maskrep", "END"
21145510Sdarrenr};
22