summaryrefslogtreecommitdiff
blob: 65947585fa77dd553ee52706799b302e5fb316a1 (plain)
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
# default: off
# description: hotway daemon
#   - By default it listens to port 1100, so please adjust settings in your
#     clients
#   - By default it only allows access from localhost.
#   - Also all xinetd entries do not start by default.
#     One should manually enable the entries that one wants by
#     changing the value of "disable = yes" to "disable = no".
#   - Restart xinetd after changing anything in this file:
#     # /etc/init.d/xinetd restart

service hotwayd
{
        only_from               = localhost
	socket_type		= stream
	wait			= no
	user			= nobody
	port			= 1100
	server			= /usr/sbin/hotwayd
	#server_args		= -p http://proxy:8080 -u proxy_user -q proxy_password
	log_on_success		+= USERID
	log_on_failure		+= USERID
	disable			= yes
	type			= unlisted
}