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