annotate runtime/syntax/pf.vim @ 18486:9d887cad7315

Added tag v8.1.2237 for changeset 63ee3c2b140fe1b4801389872a8e47aec19d028b
author Bram Moolenaar <Bram@vim.org>
date Thu, 31 Oct 2019 20:00:04 +0100
parents 2a4a2dc35c55
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 " pf syntax file
4264
2d1383658bb4 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 7
diff changeset
2 " Language: OpenBSD packet filter configuration (pf.conf)
2d1383658bb4 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 7
diff changeset
3 " Original Author: Camiel Dobbelaar <cd@sentia.nl>
2d1383658bb4 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 7
diff changeset
4 " Maintainer: Lauri Tirkkonen <lotheac@iki.fi>
14372
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
5 " Last Change: 2018 Jul 16
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6
9464
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
7 if exists("b:current_syntax")
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 finish
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10
14372
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
11 let b:current_syntax = "pf"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 setlocal foldmethod=syntax
9464
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
13 syn iskeyword @,48-57,_,-,+
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 syn sync fromstart
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15
4264
2d1383658bb4 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 7
diff changeset
16 syn cluster pfNotLS contains=pfTodo,pfVarAssign
9464
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
17 syn keyword pfCmd anchor antispoof block include match pass queue
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
18 syn keyword pfCmd queue set table
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
19 syn match pfCmd /^\s*load\sanchor\>/
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 syn keyword pfTodo TODO XXX contained
14372
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
21 syn keyword pfWildAddr any no-route urpf-failed self
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 syn match pfComment /#.*$/ contains=pfTodo
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 syn match pfCont /\\$/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24 syn match pfErrClose /}/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
25 syn match pfIPv4 /\d\{1,3}\.\d\{1,3}\.\d\{1,3}\.\d\{1,3}/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26 syn match pfIPv6 /[a-fA-F0-9:]*::[a-fA-F0-9:.]*/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27 syn match pfIPv6 /[a-fA-F0-9:]\+:[a-fA-F0-9:]\+:[a-fA-F0-9:.]\+/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 syn match pfNetmask /\/\d\+/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 syn match pfNum /[a-zA-Z0-9_:.]\@<!\d\+[a-zA-Z0-9_:.]\@!/
9464
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
30 syn match pfTable /<\s*[a-zA-Z0-9_:][a-zA-Z0-9_:.-]*\s*>/
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 syn match pfVar /$[a-zA-Z][a-zA-Z0-9_]*/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32 syn match pfVarAssign /^\s*[a-zA-Z][a-zA-Z0-9_]*\s*=/me=e-1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 syn region pfFold1 start=/^#\{1}>/ end=/^#\{1,3}>/me=s-1 transparent fold
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 syn region pfFold2 start=/^#\{2}>/ end=/^#\{2,3}>/me=s-1 transparent fold
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 syn region pfFold3 start=/^#\{3}>/ end=/^#\{3}>/me=s-1 transparent fold
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36 syn region pfList start=/{/ end=/}/ transparent contains=ALLBUT,pfErrClose,@pfNotLS
9464
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
37 syn region pfString start=/"/ skip=/\\"/ end=/"/ contains=pfIPv4,pfIPv6,pfNetmask,pfTable,pfVar
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
38 syn region pfString start=/'/ skip=/\\'/ end=/'/ contains=pfIPv4,pfIPv6,pfNetmask,pfTable,pfVar
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39
9464
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
40 hi def link pfCmd Statement
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
41 hi def link pfComment Comment
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
42 hi def link pfCont Statement
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
43 hi def link pfErrClose Error
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
44 hi def link pfIPv4 Type
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
45 hi def link pfIPv6 Type
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
46 hi def link pfNetmask Constant
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
47 hi def link pfNum Constant
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
48 hi def link pfService Constant
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
49 hi def link pfString String
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
50 hi def link pfTable Identifier
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
51 hi def link pfTodo Todo
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
52 hi def link pfVar Identifier
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
53 hi def link pfVarAssign Identifier
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 4264
diff changeset
54 hi def link pfWildAddr Type
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
55
14372
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
56 " from OpenBSD src/etc/services r1.95
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
57 syn keyword pfService 802-11-iapp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
58 syn keyword pfService Microsoft-SQL-Monitor
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
59 syn keyword pfService Microsoft-SQL-Server
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
60 syn keyword pfService NeXTStep
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
61 syn keyword pfService NextStep
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
62 syn keyword pfService afpovertcp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
63 syn keyword pfService afs3-bos
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
64 syn keyword pfService afs3-callback
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
65 syn keyword pfService afs3-errors
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
66 syn keyword pfService afs3-fileserver
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
67 syn keyword pfService afs3-kaserver
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
68 syn keyword pfService afs3-prserver
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
69 syn keyword pfService afs3-rmtsys
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
70 syn keyword pfService afs3-update
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
71 syn keyword pfService afs3-vlserver
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
72 syn keyword pfService afs3-volser
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
73 syn keyword pfService amt-redir-tcp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
74 syn keyword pfService amt-redir-tls
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
75 syn keyword pfService amt-soap-http
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
76 syn keyword pfService amt-soap-https
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
77 syn keyword pfService asf-rmcp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
78 syn keyword pfService at-echo
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
79 syn keyword pfService at-nbp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
80 syn keyword pfService at-rtmp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
81 syn keyword pfService at-zis
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
82 syn keyword pfService auth
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
83 syn keyword pfService authentication
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
84 syn keyword pfService bfd-control
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
85 syn keyword pfService bfd-echo
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
86 syn keyword pfService bftp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
87 syn keyword pfService bgp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
88 syn keyword pfService bgpd
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
89 syn keyword pfService biff
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
90 syn keyword pfService bootpc
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
91 syn keyword pfService bootps
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
92 syn keyword pfService canna
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
93 syn keyword pfService cddb
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
94 syn keyword pfService cddbp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
95 syn keyword pfService chargen
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
96 syn keyword pfService chat
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
97 syn keyword pfService cmd
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
98 syn keyword pfService cmip-agent
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
99 syn keyword pfService cmip-man
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
100 syn keyword pfService comsat
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
101 syn keyword pfService conference
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
102 syn keyword pfService conserver
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
103 syn keyword pfService courier
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
104 syn keyword pfService csnet-ns
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
105 syn keyword pfService cso-ns
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
106 syn keyword pfService cvspserver
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
107 syn keyword pfService daap
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
108 syn keyword pfService datametrics
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
109 syn keyword pfService daytime
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
110 syn keyword pfService dhcpd-sync
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
111 syn keyword pfService dhcpv6-client
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
112 syn keyword pfService dhcpv6-server
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
113 syn keyword pfService discard
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
114 syn keyword pfService domain
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
115 syn keyword pfService echo
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
116 syn keyword pfService efs
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
117 syn keyword pfService eklogin
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
118 syn keyword pfService ekshell
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
119 syn keyword pfService ekshell2
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
120 syn keyword pfService epmap
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
121 syn keyword pfService eppc
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
122 syn keyword pfService exec
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
123 syn keyword pfService finger
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
124 syn keyword pfService ftp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
125 syn keyword pfService ftp-data
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
126 syn keyword pfService git
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
127 syn keyword pfService gopher
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
128 syn keyword pfService gre-in-udp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
129 syn keyword pfService gre-udp-dtls
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
130 syn keyword pfService hostname
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
131 syn keyword pfService hostnames
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
132 syn keyword pfService hprop
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
133 syn keyword pfService http
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
134 syn keyword pfService https
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
135 syn keyword pfService hunt
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
136 syn keyword pfService hylafax
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
137 syn keyword pfService iapp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
138 syn keyword pfService icb
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
139 syn keyword pfService ident
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
140 syn keyword pfService imap
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
141 syn keyword pfService imap2
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
142 syn keyword pfService imap3
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
143 syn keyword pfService imaps
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
144 syn keyword pfService ingreslock
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
145 syn keyword pfService ipp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
146 syn keyword pfService iprop
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
147 syn keyword pfService ipsec-msft
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
148 syn keyword pfService ipsec-nat-t
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
149 syn keyword pfService ipx
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
150 syn keyword pfService irc
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
151 syn keyword pfService isakmp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
152 syn keyword pfService iscsi
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
153 syn keyword pfService isisd
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
154 syn keyword pfService iso-tsap
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
155 syn keyword pfService kauth
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
156 syn keyword pfService kdc
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
157 syn keyword pfService kerberos
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
158 syn keyword pfService kerberos-adm
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
159 syn keyword pfService kerberos-iv
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
160 syn keyword pfService kerberos-sec
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
161 syn keyword pfService kerberos_master
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
162 syn keyword pfService kf
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
163 syn keyword pfService kip
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
164 syn keyword pfService klogin
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
165 syn keyword pfService kpasswd
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
166 syn keyword pfService kpop
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
167 syn keyword pfService krb524
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
168 syn keyword pfService krb_prop
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
169 syn keyword pfService krbupdate
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
170 syn keyword pfService krcmd
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
171 syn keyword pfService kreg
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
172 syn keyword pfService kshell
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
173 syn keyword pfService kx
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
174 syn keyword pfService l2tp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
175 syn keyword pfService ldap
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
176 syn keyword pfService ldaps
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
177 syn keyword pfService ldp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
178 syn keyword pfService link
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
179 syn keyword pfService login
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
180 syn keyword pfService mail
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
181 syn keyword pfService mdns
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
182 syn keyword pfService mdnsresponder
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
183 syn keyword pfService microsoft-ds
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
184 syn keyword pfService ms-sql-m
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
185 syn keyword pfService ms-sql-s
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
186 syn keyword pfService msa
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
187 syn keyword pfService msp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
188 syn keyword pfService mtp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
189 syn keyword pfService mysql
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
190 syn keyword pfService name
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
191 syn keyword pfService nameserver
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
192 syn keyword pfService netbios-dgm
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
193 syn keyword pfService netbios-ns
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
194 syn keyword pfService netbios-ssn
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
195 syn keyword pfService netnews
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
196 syn keyword pfService netplan
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
197 syn keyword pfService netrjs
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
198 syn keyword pfService netstat
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
199 syn keyword pfService netwall
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
200 syn keyword pfService newdate
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
201 syn keyword pfService nextstep
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
202 syn keyword pfService nfs
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
203 syn keyword pfService nfsd
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
204 syn keyword pfService nicname
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
205 syn keyword pfService nnsp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
206 syn keyword pfService nntp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
207 syn keyword pfService ntalk
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
208 syn keyword pfService ntp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
209 syn keyword pfService null
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
210 syn keyword pfService openwebnet
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
211 syn keyword pfService ospf6d
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
212 syn keyword pfService ospfapi
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
213 syn keyword pfService ospfd
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
214 syn keyword pfService photuris
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
215 syn keyword pfService pop2
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
216 syn keyword pfService pop3
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
217 syn keyword pfService pop3pw
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
218 syn keyword pfService pop3s
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
219 syn keyword pfService poppassd
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
220 syn keyword pfService portmap
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
221 syn keyword pfService postgresql
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
222 syn keyword pfService postoffice
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
223 syn keyword pfService pptp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
224 syn keyword pfService presence
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
225 syn keyword pfService printer
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
226 syn keyword pfService prospero
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
227 syn keyword pfService prospero-np
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
228 syn keyword pfService puppet
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
229 syn keyword pfService pwdgen
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
230 syn keyword pfService qotd
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
231 syn keyword pfService quote
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
232 syn keyword pfService radacct
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
233 syn keyword pfService radius
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
234 syn keyword pfService radius-acct
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
235 syn keyword pfService rdp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
236 syn keyword pfService readnews
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
237 syn keyword pfService remotefs
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
238 syn keyword pfService resource
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
239 syn keyword pfService rfb
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
240 syn keyword pfService rfe
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
241 syn keyword pfService rfs
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
242 syn keyword pfService rfs_server
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
243 syn keyword pfService ripd
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
244 syn keyword pfService ripng
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
245 syn keyword pfService rje
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
246 syn keyword pfService rkinit
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
247 syn keyword pfService rlp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
248 syn keyword pfService routed
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
249 syn keyword pfService router
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
250 syn keyword pfService rpc
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
251 syn keyword pfService rpcbind
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
252 syn keyword pfService rsync
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
253 syn keyword pfService rtelnet
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
254 syn keyword pfService rtsp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
255 syn keyword pfService sa-msg-port
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
256 syn keyword pfService sane-port
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
257 syn keyword pfService sftp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
258 syn keyword pfService shell
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
259 syn keyword pfService sieve
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
260 syn keyword pfService silc
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
261 syn keyword pfService sink
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
262 syn keyword pfService sip
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
263 syn keyword pfService smtp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
264 syn keyword pfService smtps
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
265 syn keyword pfService smux
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
266 syn keyword pfService snmp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
267 syn keyword pfService snmp-trap
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
268 syn keyword pfService snmptrap
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
269 syn keyword pfService snpp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
270 syn keyword pfService socks
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
271 syn keyword pfService source
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
272 syn keyword pfService spamd
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
273 syn keyword pfService spamd-cfg
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
274 syn keyword pfService spamd-sync
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
275 syn keyword pfService spooler
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
276 syn keyword pfService spop3
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
277 syn keyword pfService ssdp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
278 syn keyword pfService ssh
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
279 syn keyword pfService submission
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
280 syn keyword pfService sunrpc
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
281 syn keyword pfService supdup
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
282 syn keyword pfService supfiledbg
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
283 syn keyword pfService supfilesrv
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
284 syn keyword pfService support
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
285 syn keyword pfService svn
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
286 syn keyword pfService svrloc
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
287 syn keyword pfService swat
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
288 syn keyword pfService syslog
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
289 syn keyword pfService syslog-tls
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
290 syn keyword pfService systat
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
291 syn keyword pfService tacacs
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
292 syn keyword pfService tacas+
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
293 syn keyword pfService talk
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
294 syn keyword pfService tap
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
295 syn keyword pfService tcpmux
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
296 syn keyword pfService telnet
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
297 syn keyword pfService tempo
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
298 syn keyword pfService tftp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
299 syn keyword pfService time
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
300 syn keyword pfService timed
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
301 syn keyword pfService timeserver
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
302 syn keyword pfService timserver
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
303 syn keyword pfService tsap
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
304 syn keyword pfService ttylink
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
305 syn keyword pfService ttytst
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
306 syn keyword pfService ub-dns-control
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
307 syn keyword pfService ulistserv
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
308 syn keyword pfService untp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
309 syn keyword pfService usenet
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
310 syn keyword pfService users
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
311 syn keyword pfService uucp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
312 syn keyword pfService uucp-path
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
313 syn keyword pfService uucpd
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
314 syn keyword pfService vnc
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
315 syn keyword pfService vxlan
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
316 syn keyword pfService wais
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
317 syn keyword pfService webster
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
318 syn keyword pfService who
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
319 syn keyword pfService whod
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
320 syn keyword pfService whois
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
321 syn keyword pfService www
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
322 syn keyword pfService x400
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
323 syn keyword pfService x400-snd
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
324 syn keyword pfService xcept
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
325 syn keyword pfService xdmcp
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
326 syn keyword pfService xmpp-bosh
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
327 syn keyword pfService xmpp-client
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
328 syn keyword pfService xmpp-server
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
329 syn keyword pfService z3950
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
330 syn keyword pfService zabbix-agent
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
331 syn keyword pfService zabbix-trapper
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
332 syn keyword pfService zebra
2a4a2dc35c55 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9464
diff changeset
333 syn keyword pfService zebrasrv