summaryrefslogtreecommitdiff
path: root/nodegen
blob: aac69200a81975356bb117c6c245efdde6e103b9 (about) (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

echo 'static struct node nodes[] = {'

curl https://nodes.tox.chat/json |
jq --tab '[.nodes[] | {".addr4": .ipv4, ".addr6": .ipv6, ".port": .port, ".idstr": .public_key}]' |
sed 's/"-"/NULL/; s/"\(\.[0-9a-z]\+\)":/\1 =/; 1d; $d'

echo '};'