diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2023-07-21 03:39:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-21 03:39:40 +0200 |
commit | fa0bd515b5c4861ba05cb14732da85c98d537386 (patch) | |
tree | 1932380d2691b5d5c6540b289b4421c11a1dddfc /utils | |
parent | 3edfad01a1bb22b33bd5bafa0ceeb13e27f03e67 (diff) |
Add detection of Roblox games (#2054)
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/asn_update.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/asn_update.sh b/utils/asn_update.sh index 748358f3c..7385d80b7 100755 --- a/utils/asn_update.sh +++ b/utils/asn_update.sh @@ -202,6 +202,11 @@ DEST=../src/lib/inc_generated/ndpi_asn_nvidia.c.inc create_list NDPI_PROTOCOL_NVIDIA $DEST "" "AS60977" "AS50889" "AS20347" "AS11414" echo "(3) Nvidia IPs are available in $DEST" +echo "(1) Downloading Roblox..." +DEST=../src/lib/inc_generated/ndpi_asn_roblox.c.inc +create_list NDPI_PROTOCOL_ROBLOX $DEST "" "AS22697" +echo "(3) Roblox IPs are available in $DEST" + if [ ${TOTAL_ASN} -eq 0 -o ${TOTAL_ASN} -eq ${FAILED_ASN} ]; then printf '%s: %s\n' "${0}" "All download(s) failed, ./get_routes_by_asn.sh broken?" exit 1 |