mirror of
https://github.com/matrix-construct/construct
synced 2025-01-13 16:33:53 +01:00
ircd: Allow non-default CAP_MASK during server estab.
This commit is contained in:
parent
f081f4b7cb
commit
2088193118
1 changed files with 2 additions and 2 deletions
|
@ -797,7 +797,7 @@ server_estab(client::client *client_p)
|
|||
EmptyString(server_p->spasswd) ? "*" : server_p->spasswd, TS_CURRENT, me.id);
|
||||
|
||||
/* pass info to new server */
|
||||
send_capabilities(client_p, default_server_capabs
|
||||
send_capabilities(client_p, default_server_capabs | CAP_MASK
|
||||
| (ServerConfCompressed(server_p) ? CAP_ZIP_SUPPORTED : 0)
|
||||
| (ServerConfTb(server_p) ? CAP_TB : 0));
|
||||
|
||||
|
@ -1265,7 +1265,7 @@ serv_connect_callback(rb_fde_t *F, int status, void *data)
|
|||
EmptyString(server_p->spasswd) ? "*" : server_p->spasswd, TS_CURRENT, me.id);
|
||||
|
||||
/* pass my info to the new server */
|
||||
send_capabilities(client_p, default_server_capabs
|
||||
send_capabilities(client_p, default_server_capabs | CAP_MASK
|
||||
| (ServerConfCompressed(server_p) ? CAP_ZIP_SUPPORTED : 0)
|
||||
| (ServerConfTb(server_p) ? CAP_TB : 0));
|
||||
|
||||
|
|
Loading…
Reference in a new issue