1 /* 2 * Copyright (C) 1993-2001 by Darren Reed. 3 * 4 * See the IPFILTER.LICENCE file for details on licencing. 5 * 6 * $Id: v6ionames.c,v 1.1.4.1 2005/01/02 13:08:49 darrenr Exp $ 7 */ 8 #include "ipf.h" 9 10 11 #ifdef USE_INET6 12 13 struct ipopt_names v6ionames[] ={ 14 { IPPROTO_HOPOPTS, 0x000001, 0, "hopopts" }, 15 { IPPROTO_IPV6, 0x000002, 0, "ipv6" }, 16 { IPPROTO_ROUTING, 0x000004, 0, "routing" }, 17 { IPPROTO_FRAGMENT, 0x000008, 0, "frag" }, 18 { IPPROTO_ESP, 0x000010, 0, "esp" }, 19 { IPPROTO_AH, 0x000020, 0, "ah" }, 20 { IPPROTO_NONE, 0x000040, 0, "none" }, 21 { IPPROTO_DSTOPTS, 0x000080, 0, "dstopts" }, 22 { 0, 0, 0, (char *)NULL } 23 }; 24 25 #endif 26