File: listen.conf

package info (click to toggle)
carbon-c-relay 3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,604 kB
  • sloc: ansic: 8,354; sh: 1,401; yacc: 924; lex: 354; python: 112; makefile: 110
file content (30 lines) | stat: -rw-r--r-- 514 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# listen syntax incarnations
#
# 
# listen
#     type linemode [transport <gzip | lza4 | ssl <pemcert>>]
#         <<interface[:port] | port> proto <udp | tcp>> ...
#         </ptah/to/file proto unix> ...
#     ;

listen
	type linemode
		2013 proto tcp
		0.0.0.0:2013 proto udp
		/var/tmp/tstlisten.sock proto unix
	;

listen
	type linemode
		0.0.0.0:2014 proto tcp
	;

listen
	type linemode transport gzip
		0.0.0.0:2015 proto tcp
	;

listen
	type linemode transport ssl mycert.pem
		127.0.0.1:2913 proto tcp
	;