reference.conf: Make it clearer connect {} blocks are reciprocal

This commit is contained in:
Val Lorentz 2021-07-31 06:41:46 +02:00 committed by GitHub
parent 3175172d52
commit d7964d4585
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -546,14 +546,21 @@ operator "god" {
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" {
/* the name of the other server must go above. It should match the
* 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
* must match the reverse dns of the server.
/* host: the host or IP to connect to.
*
* 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";