osquery-1/specs/etc_protocols.table
2016-10-04 19:08:27 -07:00

14 lines
400 B
Plaintext

table_name("etc_protocols")
description("Line-parsed /etc/protocols.")
schema([
Column("name", TEXT, "Protocol name"),
Column("number", INTEGER, "Protocol number"),
Column("alias", TEXT, "Protocol alias"),
Column("comment", TEXT, "Comment with protocol description"),
])
attributes(cacheable=True)
implementation("etc_protocols@genEtcProtocols")
fuzz_paths([
"/etc/protocols",
])