summaryrefslogtreecommitdiffstats
path: root/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/ip.sed.in
blob: 5d514e36b6bb9488d9c626f3dac8569296483dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
 * 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 (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
 */

/*
 * 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/netstack.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <inet/ip.h>
#include <inet/tcp.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)

SED_REPLACE(TCP_MIN_HEADER_LENGTH)

SED_REPLACE(GLOBAL_NETSTACKID)