Systemd/src/basic/generate-af-list.sh
2017-04-25 08:49:16 -04:00

6 lines
174 B
Bash
Executable file

#!/bin/sh -eu
$1 -E -dM -include sys/socket.h - </dev/null | \
grep -Ev 'AF_UNSPEC|AF_MAX' | \
awk '/^#define[ \t]+AF_[^ \t]+[ \t]+PF_[^ \t]/ { print $2; }'