summaryrefslogtreecommitdiff
path: root/src/basic/generate-af-list.sh
blob: b0814854e3974ab0b8a5d0a0b19e76b6c4d7cafb (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env bash
# SPDX-License-Identifier: LGPL-2.1-or-later
set -eu
set -o pipefail

${1:?} -E -dM -include sys/socket.h -include "${2:?}" -include "${3:?}" - </dev/null | \
       grep -Ev 'AF_UNSPEC|AF_MAX' | \
       awk '/^#define[ \t]+AF_[^ \t]+[ \t]+[AP]F_[^ \t]/ { print $2; }'