blob: 4848a7631a86e908bf702726ce1242ed95423b29 [file] [log] [blame] [raw]
BEGIN{
print "static const char* const socket_protocol_names[] = { "
}
!/HOPOPTS/ {
printf " [IPPROTO_%s] = \"%s\",\n", $1, tolower($1)
}
END{
print "};"
}