1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 16:43:12 +02:00

Add <server:sid>, since nothing seems to set it.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1519 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Robin Burchell w00t@inspircd.org
2008-11-03 21:48:48 +00:00
parent 2e7304b170
commit 6e4ea98376
2 changed files with 7 additions and 0 deletions
+6
View File
@@ -117,6 +117,12 @@ uplink
* Refer to your IRCd documentation for more information on link blocks.
*/
password = "mypassword"
/*
* What server ID to use for this connection?
* NOTE: This should *only* be used for TS6/P10 IRCds.
*/
sid = 00A
}
/*
+1
View File
@@ -601,6 +601,7 @@ int ServerConfig::Read(bool bail)
{"uplink", "host", "", new ValueContainerChar(&RemoteServer), DT_HOSTNAME | DT_NORELOAD, ValidateNotEmpty},
{"uplink", "port", "0", new ValueContainerInt(&RemotePort), DT_INTEGER | DT_NORELOAD, ValidatePort},
{"uplink", "password", "", new ValueContainerChar(&RemotePassword), DT_NOSPACES | DT_NORELOAD, ValidateNotEmpty},
{"uplink", "sid", "", new ValueContainerChar(&TS6SID), DT_CHARPTR | DT_NORELOAD, NoValidation},
{"nickserv", "nick", "NickServ", new ValueContainerChar(&s_NickServ), DT_CHARPTR | DT_NORELOAD, ValidateNotEmpty},
{"nickserv", "description", "Nickname Registration Service", new ValueContainerChar(&desc_NickServ), DT_CHARPTR | DT_NORELOAD, ValidateNotEmpty},
{"nickserv", "database", "nick.db", new ValueContainerChar(&NickDBName), DT_CHARPTR, ValidateNotEmpty},