mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
ircs: rfc7194 says to use port 6697, not 9999
This commit is contained in:
parent
e784af81aa
commit
12c74b4910
4 changed files with 8 additions and 4 deletions
|
@ -613,7 +613,7 @@ X
|
||||||
# TODO: generate a psyced.gdb file kind of like this
|
# TODO: generate a psyced.gdb file kind of like this
|
||||||
print <<X if 0;
|
print <<X if 0;
|
||||||
file /bin/psyclpc
|
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
|
X
|
||||||
|
|
||||||
# PSYCED INIT.D SCRIPT
|
# PSYCED INIT.D SCRIPT
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
#define HTTPS_PORT 34443
|
#define HTTPS_PORT 34443
|
||||||
|
|
||||||
#define IRC_PORT 6667
|
#define IRC_PORT 6667
|
||||||
#define IRCS_PORT 9999
|
#define IRCS_PORT 6697
|
||||||
|
|
||||||
#define JABBER_PORT 5222
|
#define JABBER_PORT 5222
|
||||||
#define JABBERS_PORT 5223
|
#define JABBERS_PORT 5223
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
#define HTTPS_PORT 34443
|
#define HTTPS_PORT 34443
|
||||||
|
|
||||||
#define IRC_PORT 6667
|
#define IRC_PORT 6667
|
||||||
#define IRCS_PORT 9999
|
#define IRCS_PORT 6697
|
||||||
|
|
||||||
#define JABBER_PORT 5222
|
#define JABBER_PORT 5222
|
||||||
#define JABBERS_PORT 5223
|
#define JABBERS_PORT 5223
|
||||||
|
|
|
@ -125,7 +125,11 @@ _jabber_clients = 5222
|
||||||
_jabber_clients_encrypted = 5223
|
_jabber_clients_encrypted = 5223
|
||||||
_IRC = 6667
|
_IRC = 6667
|
||||||
_IRC_hidden = 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 = 33333
|
||||||
;_HTTP_hidden = 80
|
;_HTTP_hidden = 80
|
||||||
_HTTP_encrypted = 34443
|
_HTTP_encrypted = 34443
|
||||||
|
|
Loading…
Reference in a new issue