mirror of
https://github.com/systemd/systemd.git
synced 2026-07-15 12:00:34 +00:00
7 lines
171 B
Bash
Executable File
7 lines
171 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
$1 -dM -include netinet/in.h - </dev/null | \
|
|
awk '/^#define[ \t]+IPPROTO_[^ \t]+[ \t]+[^ \t]/ { print $2; }' | \
|
|
sed -e 's/IPPROTO_//'
|