osquery-1/specs/posix/dns_resolvers.table
artemdinaburg d4a3fe2452 Windows Daemon/Shell: Initial support for Windows tables (#2182)
Preparation for Windows Tables. We need a Windows process table so that the daemon will run
2016-06-23 16:04:11 -07:00

11 lines
435 B
Plaintext

table_name("dns_resolvers")
description("Resolvers used by this host")
schema([
Column("id", INTEGER, "Address type index or order"),
Column("type", TEXT, "Address type: sortlist, nameserver, search"),
Column("address", TEXT, "Resolver IP/IPv6 address"),
Column("netmask", TEXT, "Address (sortlist) netmask length"),
Column("options", BIGINT, "Resolver options"),
])
implementation("dns_resolvers@genDNSResolvers")