diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/doc/examples/irccdctl.conf	Mon Feb 08 16:43:14 2016 +0100
@@ -0,0 +1,34 @@
+#
+# irccdctl.conf -- config file for irccdctl
+#
+
+# Section general:
+#	This section describe global options used by irccd.
+#
+# [general]
+# verbose = false		# (bool) enable verbose message (Optional, default: false).
+
+
+[general]
+
+# Section connect:
+#	This section is used to connect to a irccd transport.
+#
+# For internet sockets:
+#
+# [connect]
+# type = "ip"
+# host = "localhost"		# (string) host to connect,
+# port = "1234"			# (int) port number,
+# family = "ipv4 ipv6"		# (string) internet family: ipv6 or ipv4 (Optional, default: ipv4).
+#
+# For unix sockets:
+#
+# [connect]
+# type = "unix"
+# path = "/tmp/irccd.sock"	# (string) the file path to the socket.
+
+[connect]
+type = "ip"
+host = "localhost"
+port = "5980"