blob: a4c9a4023c90b34926645cf8c4776a9bff1abde8 (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
#!/bin/sh
# $OpenBSD: keywords.sh,v 1.25 2010/09/04 08:06:09 blambert Exp $
# $NetBSD: keywords.sh,v 1.2 1996/11/15 18:57:21 gwr Exp $
# @(#)keywords 8.2 (Berkeley) 3/19/94
#
# WARNING! If you change this file, re-run it!
# This program requires "new" awk (or GNU awk).
awk=${AWK:-awk}
# the following must be sorted
cat << _EOF_ | sort > _keywords.t1
add
blackhole
change
cloning
delete
dst
encap
exec
expire
flush
gateway
genmask
get
host
hopcount
iface
interface
ifa
ifp
in
inet
inet6
jumbo
label
link
llinfo
lock
lockrest
monitor
mpath
mpls
mplslabel
mtu
net
netmask
nojumbo
nostatic
out
pop
prefixlen
priority
proto1
proto2
push
recvpipe
reject
rtt
rttvar
sa
sendpipe
show
ssthresh
static
swap
xresolve
_EOF_
################################################################
# Setup
################################################################
# This creates a stream of:
# keyword KEYWORD
# (lower case, upper case).
tr a-z A-Z < _keywords.t1 |
paste _keywords.t1 - > _keywords.t2
################################################################
# Generate the h file
################################################################
exec > keywords.h
echo '/* $'OpenBSD'$ */
/* WARNING! This file was generated by keywords.sh */
struct keytab {
char *kt_cp;
int kt_i;
};
enum {
K_NULL,'
$awk '{
printf("\tK_%s,\n", $2);
}' < _keywords.t2
echo '};
struct keytab keywords[] = {'
$awk '{
printf("\t{ \"%s\",\tK_%s },\n", $1, $2);
}' < _keywords.t2
echo '};
' # tail
################################################################
# Cleanup
################################################################
rm -f _keywords.t1 _keywords.t2
exit 0
|