Author: Bleep <tomh@inxpress.net>
[ircu2.10.12-pk.git] / ChangeLog
1 2000-03-29  Thomas Helvey <tomh@inxpress.net>
2         * ircd/ircd.c: refactor server initialization a bit, use
3         getopt for parsing command line, refactor init_sys, main,
4         and other bits.
5
6         * ircd/s_bsd.c: add functions for initialization to clean
7         up logic a bit and remove duplicated code.
8
9         * include/ircd.h: add struct for server process related
10         variables.
11
12 2000-03-29  Kevin L. Mitchell  <klmitch@mit.edu>
13
14         * ircd/channel.c: initial definition of mode_parse(); flags to
15         prevent doing the same thing multiple times; helper method
16         send_notoper() to send a "Not oper"/"Not on channel" notice
17
18         * include/channel.h: declare mode_parse() and helper flags
19
20         * ircd/channel.c (modebuf_flush_int): fiddled with timestamp
21         sending to match the current action of set_mode() closely enough
22         that hopefully there won't be major conflicts
23
24         * ircd/channel.c (modebuf_flush_int): consolidated the mode string
25         building logic, reversed the order of the arguments to mode
26         commands to have '-' preceed '+'
27
28 2000-03-29  Thomas Helvey <tomh@inxpress.net>
29         * ircd/s_bsd.c (add_connection): don't disable socket options
30         let OS tune itself and allow important performance tweaks to 
31         work.
32
33 2000-03-28  Kevin L. Mitchell  <klmitch@mit.edu>
34
35         * ircd/channel.c (modebuf_flush_int): use %d, not %-15d; I got
36         confused by set_mode, which is doing some really weird logic;
37         guess what I'm going to rewrite next?  ;)
38
39 2000-03-28  Kevin L. Mitchell  <klmitch@emc.com>
40
41         * include/channel.h: added MODE_SAVE for the bounds checking stuff
42         in modebuf_flush
43
44         * ircd/channel.c: make modebuf_flush into modebuf_flush_int and
45         make it do bounds checking on the buffer; all modes are sent only
46         if the all parameter is 1; modebuf_flush is the exported wrapper
47
48         * include/channel.h: add BOUNCE, renumber flags to get a little
49         more space
50
51         * ircd/channel.c (modebuf_flush): don't overload HACK2, add
52         BOUNCE; send DESYNCH message
53
54 2000-03-27  Kevin L. Mitchell  <klmitch@emc.com>
55
56         * ircd/m_clearmode.c (do_clearmode): only mark the modes the
57         channel actually has in effect for deletion
58
59         * ircd/channel.c: added explanatory comments to all added
60         functions; made flushing take place at the correct place even if
61         the MODEBUF_DEST_DEOP flag is set; rewrote build_string() helper
62         to bash some stupid bugs; made modebuf_flush() return if ModeBuf
63         is empty, fixed the apparent source, removed some bogus string
64         termination code, properly terminate the mode strings, add support
65         for HACK2 and HACK3, made limit strings not be sent if the limit
66         is being removed, changed where '+' and '-' come from in sent
67         strings, added support for DEOP flag, set up bouncing code for
68         HACK2
69
70         * ircd/Makefile.in: ran make depend
71
72         * include/channel.h: added new defines for future functionality,
73         made modebuf_flush() return int so I can use tail recursion
74
75         * ircd/m_clearmode.c: add msg.h to includes; other misc cleanups
76         to make it all compile
77
78         * ircd/m_opmode.c: add msg.h to includes...
79
80         * ircd/m_clearmode.c: implemented mo_clearchan()/ms_clearchan()
81
82         * ircd/channel.c (modebuf_flush): realized I forgot to
83         nul-terminate addbuf/rembuf properly...
84
85         * ircd/m_clearmode.c (do_clearmode): wrote do_clearmode()...
86
87         * ircd/channel.c (modebuf_flush): correct sendto_server_butone to
88         sendto_serv_butone--blah^2
89
90         * ircd/send.c (sendto_serv_butone): stupid comments confused me
91
92         * ircd/channel.c (modebuf_flush): if there are no mode changes to
93         propagate, we're done...
94
95         * ircd/channel.c (modebuf_flush): duh; it's sendto_server_butone,
96         not sendto_all_butone
97
98         * ircd/m_clearmode.c: define skeleton for m{o,s}_clearmode
99
100         * ircd/m_opmode.c: define skeleton for m{o,s}_opmode
101
102         * ircd/Makefile.in (SRC): added m_opmode() and m_clearmode() to
103         the list
104
105         * ircd/parse.c: added messages for opmode and clearmode
106
107         * include/handlers.h: added declarations for mo_opmode(),
108         ms_opmode(), mo_clearmode(), and ms_clearmode()
109
110         * include/msg.h: define MSG_OPMODE, TOK_OPMODE, MSG_CLEARMODE, and
111         TOK_CLEARMODE
112
113         * include/channel.h (MODEBUF_DEST_OPMODE): Define the
114         MODEBUF_DEST_OPMODE flag
115
116         * ircd/channel.c (modebuf_flush): added new flag,
117         MODEBUF_DEST_OPMODE; causes channel MODE/HACK(4) notice to appear
118         to originate from source's server (or source itself, if
119         IsServer(source)); also causes a server-level MODE to be sent as
120         OPMODE instead
121
122         * include/channel.h: defined MODEBUF_DEST_SERVER,
123         MODEBUF_DEST_HACK4
124
125         * ircd/channel.c: Add another argument to build_string() to handle
126         numeric nicks; implemented MODEBUF_DEST_SERVER to send MODEs to
127         servers; implemented MODEBUF_DEST_HACK4 to cause HACK(4) notices
128         to be sent out
129
130 2000-03-27  Perry Lorier <isomer@coders.net>
131
132         * ircd/s_bsd.c: fixed missing 'u' typo.
133
134 2000-03-26  Kevin L. Mitchell  <klmitch@emc.com>
135
136         * ircd/channel.c: implement modebuf_init(), _mode(), _mode_uint(),
137         _mode_string(), _mode_client(), _flush(); also implemented a
138         simple build_string()
139
140         * include/channel.h: added definition of ModeBuf, modebuf_*
141         manipulation functions, and a couple of helper macros
142
143 2000-03-24 Thomas Helvey <tomh@inxpress.net>
144   * numicks.c: convert extended numerics to use original mask version
145   * numnicks.h: ""
146   * s_user.c:
147 2000-03-23 Thomas Helvey <tomh@inxpress.net>
148   * Merge in changes from production
149 2000-03-22 Thomas Helvey <tomh@inxpress.net>
150   * numicks.c: Tweak to numnick generator to reduce possibility of duplicates.
151   * rfc1459.unet: Add Maniac's documentation for /names 0
152 * Fix misc. jupe bugs that somehow made it into the tree
153 * Escape /names 0 to mean /names --Maniac
154 * Don't core when server asks for info --Maniac 
155 * Add Kev's jupe patch --Bleep
156 * Add Maniacs squit patch --Bleep
157 * Merge in u2_10_10_beta07 changes --Bleep
158 * Merge in u2_10_10_beta06 changes --Bleep
159 * Start ircu2.10.11 development, beta branch u2_10_10 --Bleep
160 #-----------------------------------------------------------------------------
161 #
162 # ChangeLog for ircu2.10.11
163 #
164 # $Id: ChangeLog,v 1.41 2000-03-30 08:07:48 bleep Exp $
165 #
166 # Insert new changes at beginning of the change list.
167 #