Author: Bleep <tomh@inxpress.net>
[ircu2.10.12-pk.git] / README
1
2 README for ircu2.10.10.beta
3 Please read this completely before running the server
4
5 * If you run ircu2.10.10 on the production network and expect
6   more than 1000 local clients to connect you will want to make
7   sure you add -DNDEBUG to the extra CFLAGS setting when you do
8   a make config.
9 * Ircu now uses asserts in a lot of places to insure referential
10   integrity and that impossible situations do not occur. Also
11   memory integrity checking is defaulted to on as well. The asserts
12   and memory checking both use cpu and in the case of memory checking
13   extra memory. We have not had an assert trigger in quite some time
14   but would prefer to leave the checks enabled for beta testing.
15   The asserts insure that if the server is going to core it will do
16   so in well defined places where the problem will be easy to trace,
17   without them the server could core in not so well defined places.
18   If you want to disable the checks, add -DNDEBUG in the extra CFLAGS 
19   when you do a make config.
20
21 * Ircu no longer uses separate C/N lines, the functionality of both
22   has been combined in C:lines, see the example.conf for more information.
23
24 * Ircu has an different mechanism for defining ports than the previous
25   versions. Please see the example.conf for information on configuring
26   them. Ircu also ignores the port specified on the M:line, you MUST define
27   a server port with a P:line if you want servers to connect to you.
28
29 * For beta releases, please understand that there may be bugs we haven't
30   found yet, (that's why you're beta testing it in the first place :)).
31   Please report any bugs found in the server to bugs@undernet.org or
32   coder-com@undernet.org with as much information as you can provide
33   about how to reproduce the problem. Stack traces for coredumps are
34   usually helpful, however we aren't expecting any of those ;-).
35
36 * Ircu 2.10.08 is a P10 only server, and cannot be used to host P9 
37   links. On a mostly P10 network this is not a major issue, it does
38   mean that you cannot connect services directly to a 2.10.08 server,
39   but does not preclude it's use as a leaf or a hub. For now, services
40   need to continue to be hosted by 2.10.07 servers.
41
42 * EXTENDED_NUMERICS is not defined by default, we need to get everyone
43   using 2.10.07 before we can allow it to be turned on anywhere. If you
44   are using 2.10.08 on a network where everyone is up to at least 2.10.07
45   it is safe to turn them on. We have tested them on testnet and they do
46   work. :)
47
48 * The masked notices using #*.mask has changed to use $@*.mask instead.
49   Since most of the servers on the net will not understand the new masking
50   mechanism, this probably won't work for a while. The server notice mask
51   ($*.us.undernet.org) still functions properly. This was a trade off
52   between backwards compatibility and the improved protocol, we chose to
53   not maintain backwards compatibility for this command. The #*.mask
54   functionality is easily circumvented, and the command is rarely used
55   it is not considered to be a major issue.
56  
57 * The server no longer sends notices for errors on connections that are
58   suddenly dropped during connection setup. If you really want to see
59   them, we suggest you get a life. :)
60
61 * Removed: unix domain sockets, uping, m4 preprocessor spawning,
62   dozens of bugs.
63
64 * New stuff:
65    Added ISUPPORT code to match dalnets.
66    Added connection progress notices.
67    Cleaned up operating system checks.
68    /invite with no arguments lists the channels you're invited to.
69    Many speedups, ipdiffer, faster strncpy, faster inetntoa.
70    Passive lag and numerics now displayed by map command.
71    Server to server tokenization.
72    Much larger TCP windows/kernel buffers for server connections,
73     smaller for clients.
74    Removed BOOT_OPER security hole.
75    Complete listener port specifications including per port virtual
76     hosting and hidden listeners.
77    Default server port for connects (config option).
78    Speed up some channel ops using new Membership struct.
79    Hash table performance stats are available now (basic).
80    Much of the socket code has been rewritten, we now only make one
81     pass through the local client array.
82    Added initial support for PROTOCOL command.
83    Many functions have been made reentrant.
84    Resolver now uses callbacks for all queries.
85    Almost every command that is sent to a server uses full P10 numerics
86     and tokenization, this reduces netburst sizes by at least 10% and
87     many server to server message sizes by 10-50%.
88    Major source code reorginization to support engine model.
89    Parser now uses an indexed table for commands, which elminates
90     the need to do IsServer IsUser IsOper checks and allows much more
91     efficient implementation of user/server/oper command handlers.
92
93 * For a much longer winded explanation of all this stuff, see the
94   ChangeLog in this directory, or the cvs log at the coder-com
95   web site at http://coder-com.undernet.org/
96
97