blob: 4133e3df4db70d157745ac5adf635919e4fca1c4 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
echo 'static struct node nodes[] = {'
curl -s https://nodes.tox.chat/json |
jq --tab '[.nodes[] |
select(.last_ping > 0) |
select(.tcp_ports | length > 0) |
{".addr4": .ipv4, ".addr6": .ipv6, ".udp_port": .port, ".tcp_port": .tcp_ports[0], ".idstr": .public_key}]' |
sed 's/"-"/NULL/; s/"\(\.[0-9a-z_]\+\)":/\1 =/; 1d; $d'
echo '};'
|