blob: 0d75efd0c017ba19c1844fc043cca3e32ee10eaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# location of bitlbeed executable
BITLBEED_EXEC=/usr/bin/bitlbeed
#
# output from bitlbeed -h
#
# Usage: bitlbeed [-i <interface>] [-p <port>] [-n <num>] <command> <args...>
# A simple inetd-like daemon to have a program listening on a TCP socket without
# needing root access to the machine
#
# -i Specify the interface (by IP address) to listen on.
# (Default: 0.0.0.0 (any interface))
# -p Port number to listen on. (Default: 6667)
# -n Maximum number of connections. (Default: 0 (unlimited))
# -h This information
#
#BITLBEED_OPTS=""
|