grep -r TODO *.c :)

samba-like config backend:

; comment
[global]
; unfortunately, no bot can be added with the name "global"
key = value
; space around the equal sign is not necessary.

[botname]
; will be used with /CONNECT botname
host = bots.host.name
port = bot's user port
user = username_in_bot
; Not planning to store passwords yet. Maybe in BASE64 later?

XML configuration backend
<botcommander>
	<configuration>
		<value type="(bool|string|float)" name="key" value="((TRUE|FALSE)|<float value>|<string>)">
	</configuration>
	<botlist>
		<bot name="botname">
			<host>bots.host.name</host>
			<port>bot's user port</port>
			<user>username_in_bot</user>
		</bot>
	</botlist>
</botcommander>
