ircs: rfc7194 says to use port 6697, not 9999

This commit is contained in:
psyc://loupsycedyglgamf.onion/~lynX 1984-04-04 00:44:05 +00:00
parent e784af81aa
commit 12c74b4910
4 changed files with 8 additions and 4 deletions

View File

@ -613,7 +613,7 @@ X
# TODO: generate a psyced.gdb file kind of like this
print <<X if 0;
file /bin/psyclpc
run -DDEBUG=1 -u 4404 4404 2323 6667 5222 9999 etc. whatever flags necessary
run -DDEBUG=1 -u 4404 4404 2323 6667 5222 6697 etc. whatever flags necessary
X
# PSYCED INIT.D SCRIPT

View File

@ -14,7 +14,7 @@
#define HTTPS_PORT 34443
#define IRC_PORT 6667
#define IRCS_PORT 9999
#define IRCS_PORT 6697
#define JABBER_PORT 5222
#define JABBERS_PORT 5223

View File

@ -16,7 +16,7 @@
#define HTTPS_PORT 34443
#define IRC_PORT 6667
#define IRCS_PORT 9999
#define IRCS_PORT 6697
#define JABBER_PORT 5222
#define JABBERS_PORT 5223

View File

@ -125,7 +125,11 @@ _jabber_clients = 5222
_jabber_clients_encrypted = 5223
_IRC = 6667
_IRC_hidden = 6667
_IRC_encrypted = 9999
; according to https://tools.ietf.org/html/draft-butcher-irc-url-04
; we should be using 994, but then you better do a firewall forward.
; then again https://tools.ietf.org/html/rfc7194 favors 6697.
; who knows what actual ircs: URL implementations will do?
_IRC_encrypted = 6697
_HTTP = 33333
;_HTTP_hidden = 80
_HTTP_encrypted = 34443