This repository has been archived by the owner on Aug 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUGS
69 lines (54 loc) · 3.28 KB
/
BUGS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
Known Bugs worthy of a mention:
--------------------------------------------------------------------------------
1. Issues with server hostmasking.
- If for example the new servername is blah.blah.blah.nl, the following
servernames will be checked, in this order: *.blah.blah.nl, *.blah.nl,
*.nl, one of which will match the host-masked server they are
connecting behind. This will be accepted by the host-masked server it
is connected behind, but when it reaches the server the host-masked
server is connected to, the find_server will match, so the host-masked
server will be dropped.
--> This corrected?
2. /MODUNLOAD causes cores:
- If a module is modified before being unloaded, /MODUNLOAD (and
therefore /MODRELOAD) may cause a core.
This problem is caused by the behaviour of the OS, which treats
shared libraries differently to executables (modifying the ircd
binary whilst it is running would also cause a core, but is denied
by the OS). There is no way to fix this at the application level,
and fixing the OS to do the right thing is also difficult.
A workaround to avoid coring is possible however. To install new
modules, first remove or rename the old module, then copy/move the
new file into place. /MODUNLOAD will then work successfully.
Alternatively, running ./configure with the --disable-shared-modules
argument will link all the commands statically, losing the advantages
of upgrading at runtime, but reducing the chances of accidentally
coring your server.
3. Problem with msgfmt command building custom msgs using gettext
- Please ensure you are using GNU gettext version 0.10.35.
Other versions are untested, and some are known to be
incompatible.
4. Problems with quote set msglocale not working on linux.
This seems to be a linux problem, /quote set msglocale will sometimes
get "undone" when a new client connects. The server will also sometimes
not correctly set the locale from ircd.conf on startup.
The solution is if a locale is needed, to have the message_locale="x"
in ircd.conf, and then rehash to make it take effect. A rehash after
startup will also need to be performed to set the locale.
5. When updating a message file, in certain unknown situations it will core
if the file in use is being accessed. To prevent this from happening,
use '/quote SET MSGLOCALE standard' BEFORE issuing make install. When
the file is installed, you can SET MSGLOCALE back to the language that
was just updated.
6. PRIVMSG/NOTICE oper@server :message
This translates into a WALLOPS message, broken.
7. KNOCK and channel mode +p are inconsistant with Hybrid 6.
8. TCP Resolver does not function properly and is disabled.
The only time you are likely to hit the TCP resolver is for queries
over 512 bytes.
BUG REPORTS: If you run this code and encounter problems, you must report
the bug in by E-MAIL to [email protected].
Please include a gdb backtrace and a copy of your config.h and ircd.conf
with any report (with passwords and other sensitive information masked).
--------------------------------------------------------------------------------
$Id: BUGS,v 1.1 2002/01/04 09:09:21 a1kmm Exp $