1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-02 11:26:40 +02:00

move to a single password entry in link block:

"password in link block should be plaintext OR should be the SSL fingerprint of the remote link (=better)"
This commit is contained in:
Bram Matthys
2015-05-25 10:54:05 +02:00
parent a1b3b9e1b9
commit db97b23bcb
5 changed files with 51 additions and 51 deletions
+1 -2
View File
@@ -1224,15 +1224,14 @@ struct _configitem_link {
char *servername; /**< Name of the server ('link <servername> { }') */
struct {
char *mask; /**< incoming mask(s) to accept (TODO: linked list) */
anAuthStruct *auth; /**< authentication method (eg: password) */
} incoming;
struct {
char *bind_ip; /**< Our IP to bind to when doing the connect */
char *hostname; /**< Hostname or IP to connect to */
int port; /**< Port to connect to */
char *password; /**< Password to send to other server */
int options; /**< Connect options like ssl or autoconnect */
} outgoing;
anAuthStruct *auth; /**< authentication method (eg: password) */
char *hub; /**< Hub mask */
char *leaf; /**< Leaf mask */
int leaf_depth; /**< Leaf depth */