2014-11-29 16:06:34 +00:00
|
|
|
table_name("etc_services")
|
|
|
|
description("Line-parsed /etc/services.")
|
|
|
|
schema([
|
2015-02-10 04:13:11 +00:00
|
|
|
Column("name", TEXT, "Service name"),
|
|
|
|
Column("port", INTEGER, "Service port number"),
|
|
|
|
Column("protocol", TEXT, "Transport protocol (TCP/UDP)"),
|
2014-11-29 16:06:34 +00:00
|
|
|
Column("aliases", TEXT, "Optional space separated list of other names for a service"),
|
|
|
|
Column("comment", TEXT, "Optional comment for a service."),
|
|
|
|
])
|
2016-05-18 19:23:52 +00:00
|
|
|
attributes(cacheable=True)
|
2014-11-29 16:06:34 +00:00
|
|
|
implementation("etc_services@genEtcServices")
|
2016-09-14 03:37:31 +00:00
|
|
|
fuzz_paths([
|
|
|
|
"/etc/services",
|
|
|
|
])
|