Rivoreo Source Code Repositories
src.rivoreo.one
/
systemd-stable
/
main
/
.
/
src
/
shared
/
ip-protocol-to-name.awk
blob: a0671e7ee203203b502fb81320c591caf358a68f [
file
] [
log
] [
blame
] [
raw
]
# SPDX-License-Identifier: LGPL-2.1-or-later
BEGIN
{
print
"static const char* const ip_protocol_names[] = { "
}
!
/HOPOPTS/
{
printf
" [IPPROTO_%s] = \"%s\",\n"
,
$1
,
tolower
(
$1
)
}
END
{
print
"};"
}