OpenSolaris_b135/lib/libdtrace/common/ip.sed.in

/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License (the "License").
 * You may not use this file except in compliance with the License.
 *
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
 * or http://www.opensolaris.org/os/licensing.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
 * If applicable, add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your own identifying
 * information: Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 */
/*
 * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 */

#pragma ident	"%Z%%M%	%I%	%E% SMI"

/*
 * This file is a sed script which is first preprocessed by cpp or cc -E to
 * define a set of sed directives which replace #define tokens with their
 * values.  After preprocessing, the sed script is run over ip.d.in to
 * replace the #define tokens listed below to create the finished ip.d.
 * Refer to the rules in libdtrace/Makefile.com for more information.
 */

#include <sys/socket.h>
#include <netinet/in.h>
#include <inet/ip.h>

#define	SED_REPLACE(x)	s/#x/x/g

SED_REPLACE(AF_INET)
SED_REPLACE(AF_INET6)

SED_REPLACE(IPH_DF)
SED_REPLACE(IPH_MF)

SED_REPLACE(IPPROTO_IP)
SED_REPLACE(IPPROTO_HOPOPTS)
SED_REPLACE(IPPROTO_ICMP)
SED_REPLACE(IPPROTO_IGMP)
SED_REPLACE(IPPROTO_GGP)
SED_REPLACE(IPPROTO_ENCAP)
SED_REPLACE(IPPROTO_TCP)
SED_REPLACE(IPPROTO_EGP)
SED_REPLACE(IPPROTO_PUP)
SED_REPLACE(IPPROTO_UDP)
SED_REPLACE(IPPROTO_IDP)
SED_REPLACE(IPPROTO_IPV6)
SED_REPLACE(IPPROTO_ROUTING)
SED_REPLACE(IPPROTO_FRAGMENT)
SED_REPLACE(IPPROTO_RSVP)
SED_REPLACE(IPPROTO_ESP)
SED_REPLACE(IPPROTO_AH)
SED_REPLACE(IPPROTO_ICMPV6)
SED_REPLACE(IPPROTO_NONE)
SED_REPLACE(IPPROTO_DSTOPTS)
SED_REPLACE(IPPROTO_HELLO)
SED_REPLACE(IPPROTO_ND)
SED_REPLACE(IPPROTO_EON)
SED_REPLACE(IPPROTO_OSPF)
SED_REPLACE(IPPROTO_PIM)
SED_REPLACE(IPPROTO_SCTP)
SED_REPLACE(IPPROTO_RAW)
SED_REPLACE(IPPROTO_MAX)