osquery-1/specs/etc_protocols.table

14 lines
400 B
Plaintext
Raw Normal View History

2015-04-22 22:46:29 +00:00
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)
2015-04-22 22:46:29 +00:00
implementation("etc_protocols@genEtcProtocols")
2016-09-14 03:37:31 +00:00
fuzz_paths([
"/etc/protocols",
])