Use 6697 for SSL connections by default
http://blog.freenode.net/2011/02/port-6697-irc-via-tlsssl/
This commit is contained in:
parent
dd1d5f8e6a
commit
0242b706e0
|
@ -3668,7 +3668,7 @@ const struct commands xc_cmds[] = {
|
||||||
#endif
|
#endif
|
||||||
#ifdef USE_OPENSSL
|
#ifdef USE_OPENSSL
|
||||||
{"SERVER", cmd_server, 0, 0, 1,
|
{"SERVER", cmd_server, 0, 0, 1,
|
||||||
N_("SERVER [-ssl] <host> [<port>] [<password>], connects to a server, the default port is 6667 for normal connections, and 9999 for ssl connections")},
|
N_("SERVER [-ssl] <host> [<port>] [<password>], connects to a server, the default port is 6667 for normal connections, and 6697 for ssl connections")},
|
||||||
#else
|
#else
|
||||||
{"SERVER", cmd_server, 0, 0, 1,
|
{"SERVER", cmd_server, 0, 0, 1,
|
||||||
N_("SERVER <host> [<port>] [<password>], connects to a server, the default port is 6667")},
|
N_("SERVER <host> [<port>] [<password>], connects to a server, the default port is 6667")},
|
||||||
|
|
|
@ -1689,7 +1689,7 @@ server_connect (server *serv, char *hostname, int port, int no_login)
|
||||||
port = 6667;
|
port = 6667;
|
||||||
#ifdef USE_OPENSSL
|
#ifdef USE_OPENSSL
|
||||||
if (serv->use_ssl)
|
if (serv->use_ssl)
|
||||||
port = 9999;
|
port = 6697;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
port &= 0xffff; /* wrap around */
|
port &= 0xffff; /* wrap around */
|
||||||
|
|
Loading…
Reference in New Issue