comparison doc/examples/irccdctl.conf @ 0:1158cffe5a5e

Initial import
author David Demelier <markand@malikania.fr>
date Mon, 08 Feb 2016 16:43:14 +0100
parents
children 6635b9187d71
comparison
equal deleted inserted replaced
-1:000000000000 0:1158cffe5a5e
1 #
2 # irccdctl.conf -- config file for irccdctl
3 #
4
5 # Section general:
6 # This section describe global options used by irccd.
7 #
8 # [general]
9 # verbose = false # (bool) enable verbose message (Optional, default: false).
10
11
12 [general]
13
14 # Section connect:
15 # This section is used to connect to a irccd transport.
16 #
17 # For internet sockets:
18 #
19 # [connect]
20 # type = "ip"
21 # host = "localhost" # (string) host to connect,
22 # port = "1234" # (int) port number,
23 # family = "ipv4 ipv6" # (string) internet family: ipv6 or ipv4 (Optional, default: ipv4).
24 #
25 # For unix sockets:
26 #
27 # [connect]
28 # type = "unix"
29 # path = "/tmp/irccd.sock" # (string) the file path to the socket.
30
31 [connect]
32 type = "ip"
33 host = "localhost"
34 port = "5980"