reference.conf: Make it clearer connect {} blocks are reciprocal
This commit is contained in:
parent
3175172d52
commit
d7964d4585
1 changed files with 11 additions and 4 deletions
|
@ -546,14 +546,21 @@ operator "god" {
|
||||||
privset = "admin";
|
privset = "admin";
|
||||||
};
|
};
|
||||||
|
|
||||||
/* connect {}: controls servers we connect to (OLD C:, N:, H:, L:) */
|
/* connect {}: controls servers we connect with (OLD C:, N:, H:, L:).
|
||||||
|
*
|
||||||
|
* This configuration is used whether connections are incoming or
|
||||||
|
* outgoing.
|
||||||
|
*/
|
||||||
connect "irc.uplink.com" {
|
connect "irc.uplink.com" {
|
||||||
/* the name of the other server must go above. It should match the
|
/* the name of the other server must go above. It should match the
|
||||||
* other server's name in its serverinfo {} block, and does not
|
* other server's name in its serverinfo {} block, and does not
|
||||||
* need to be an actual hostname. */
|
* need to be an actual hostname.
|
||||||
|
*/
|
||||||
|
|
||||||
/* host: the host or IP to connect to. If a hostname is used it
|
/* host: the host or IP to connect to.
|
||||||
* must match the reverse dns of the server.
|
*
|
||||||
|
* It is also used to validate incoming connections. If a hostname
|
||||||
|
* is used, it must match the reverse dns of the server.
|
||||||
*/
|
*/
|
||||||
host = "203.0.113.3";
|
host = "203.0.113.3";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue