1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-03 01:03:12 +02:00

- Updated flags in /version (and greeting), added 'Z' for zip links support, updated tech doc.

This commit is contained in:
Bram Matthys
2003-05-11 19:12:57 +00:00
parent fb5ea7d873
commit b780fc9347
3 changed files with 21 additions and 22 deletions
+1
View File
@@ -2156,3 +2156,4 @@ seen. gmtime warning still there
- Minor channelmode +f fix.
- IPv6: Fixed unable-to-resolve-bug if both a A/AAAA record and NS/MX/etc records were present
for the same hostname, reported by Byte (#0000972).
- Updated flags in /version (and greeting), added 'Z' for zip links support, updated tech doc.
+17 -7
View File
@@ -10,11 +10,21 @@ Protocol Version
Flag Description
------------------------------------------------------------------------------------------------
6 IPv6 is supported
e SSL is supported
c Server is chrooted
C command line config enabled
D Server is in debugmode
h Server is a hub
n NoSpoof is enabled
R Usermode +I is enabled
W System is running Windows
X Channel mode and Usermode +G is supported
F Using file descriptor lists
h Compiled as a hub
i Shows invisible users in /trace
n NOSPOOF enabled
V Uses valloc()
W Windows version
Y Syslog logging enabled
K No ident checking (?)
6 IPv6 supported
X STRIPBADWORDS enabled (chmode/umode +G)
P Uses poll()
e SSL supported
O OperOverride enabled
o OperOverride without verify
Z Zip links supported
+3 -15
View File
@@ -38,9 +38,6 @@ char serveropts[] = {
#ifdef CMDLINE_CONFIG
'C',
#endif
#ifdef DO_ID
'd',
#endif
#ifdef DEBUGMODE
'D',
#endif
@@ -53,18 +50,9 @@ char serveropts[] = {
#ifdef SHOW_INVISIBLE_LUSERS
'i',
#endif
#ifndef NO_DEFAULT_INVISIBLE
'I',
#endif
#ifdef NOSPOOF
'n',
#endif
#ifdef NPATH
'N',
#endif
#ifdef ENABLE_USERS
'U',
#endif
#ifdef VALLOC
'V',
#endif
@@ -74,9 +62,6 @@ char serveropts[] = {
#ifdef USE_SYSLOG
'Y',
#endif
#ifdef OPER_NO_HIDING
'H',
#endif
#ifdef NO_IDENT_CHECKING
'K',
#endif
@@ -97,6 +82,9 @@ char serveropts[] = {
#endif
#ifndef OPEROVERRIDE_VERIFY
'o',
#endif
#ifdef ZIP_LINKS
'Z',
#endif
'\0'
};