mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 18:33:54 +00:00
a105924804
1. Example queries will run with an (optional) integration test. 2. Fix bad accesses with OS X package BOMs 3. Move spec files from ./osquery/tables/specs to ./specs 4. Remove server parsers (netlib) from client builds.
11 lines
336 B
Plaintext
11 lines
336 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"),
|
|
])
|
|
implementation("etc_protocols@genEtcProtocols")
|
|
|