-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2776155
commit 6400381
Showing
2 changed files
with
36 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
// filters | ||
const ALLOWED_LOCATION_TYPES = ['continent', 'region', 'country', 'state', 'city', 'asn', 'network', 'magic']; | ||
const ALLOWED_QUERY_TYPES = ['ping', 'traceroute', 'dns']; | ||
const ALLOWED_QUERY_TYPES = ['ping', 'traceroute', 'dns', 'mtr']; | ||
// traceroute | ||
const ALLOWED_TRACE_PROTOCOLS = ['TCP', 'UDP', 'ICMP']; | ||
// dns | ||
const ALLOWED_DNS_TYPES = ['A', 'AAAA', 'ANY', 'CNAME', 'DNSKEY', 'DS', 'MX', 'NS', 'NSEC', 'PTR', 'RRSIG', 'SOA', 'TXT', 'SRV']; | ||
const ALLOWED_DNS_PROTOCOLS = ['UDP', 'TCP']; | ||
// mtr | ||
const ALLOWED_MTR_PROTOCOLS = ['TCP', 'UDP', 'ICMP']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters