]> code.citadel.org Git - citadel.git/blob - citadel/ChangeLog
* msgbase.c: include dynloader.h
[citadel.git] / citadel / ChangeLog
1 1998-09-21 Nathan Bryant <bryant@cs.usm.maine.edu>
2         * msgbase.c: include dynloader.h
3         * citadelapi.h: removed
4
5 Sun Sep 20 18:56:37 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
6         * Added a UserFunctionHook category to implement hooks which perform
7           operations on various users or usernames
8
9 Fri Sep 18 21:14:41 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
10         * citserver.c: removed cmd_extn() and related code
11
12 1998-09-18 Nathan Bryant <bryant@cs.usm.maine.edu>
13         * user_ops.c: include dynloader.h
14         * roomstats.{c,mk}: removed
15         * Configure, Makefile.in: autodependency-related fixes
16
17 Thu Sep 17 22:55:29 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
18         * Various changes to allow "new messages" to work correctly with Mail
19
20 Thu Sep 17 22:21:45 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
21         * server.h, dynloader.c, citserver.c, user_ops.c: reduced the number
22           of hook types by inventing an EventType field to the Session hook.
23         * proxy.c: added pre-fetching
24
25 1998-09-17 Nathan Bryant <bryant@cs.usm.maine.edu>
26         * Makefile.in: add SERV_MODULES and PROXY_TARGETS to `cleaner'
27         * dynloader.[ch], serv_{chat,test}.[ch], sysdep.c: cleaned
28           up the dynamic loader interface as follows:
29           - all the symbol table stuff is gone.
30           - modules are loaded once at server startup and never unloaded.
31           - Added a new function CtdlRegisterProtoHook() to handle the stuff
32             that was being done with the symbol tables.
33           - Dynamic_Module_Init() now returns a pointer to a static struct
34             DLModule_Info; this structure itself has been modified to use char*
35             fields instead of fixed char arrays.
36         * roomstats.c: include <stdarg.h> not <stdargs.h> (is this file still
37           in use?)
38         * Configure, Makefile.in: added autodependency support
39
40 Wed Sep 16 22:25:13 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
41         * Implemented separate structs, lists, and functions for each type
42           of server-side hook available.
43
44 1998-09-16 Nathan Bryant <bryant@cs.usm.maine.edu>
45         * ipc_c_tcp.c: Fixed up some #include/prototyping stuff, call memcpy()
46           instead of bcopy()
47         * hooks.h: removed
48         * sysdep.c, user_ops.c: removed reference to hooks.h
49
50 Wed Sep 16 11:42:42 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
51         * ipc_c_tcp.c: Reversed any changes that have been made to this file,
52           because something was causing abominally slow response time.
53         * proxy.c: added.  This will eventually become a caching, pre-fetching
54           multiuser proxy server for the Citadel protocol.
55
56 1998-09-15 Nathan Bryant <bryant@cs.usm.maine.edu>
57         * Makefile.in: remove support.o from serv_chat.so, add -fPIC to compile
58           flags for serv_chat.o
59         * dynloader.c: include "sysdep_decls.h", use RTLD_NOW not RTLD_LAZY
60         * dynloader.h: prototype CtdlRegisterHook()
61         * .cvsignore: added data
62
63 Mon Sep 14 20:49:08 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
64         * Tried my hand at adding the ability for server extensions to
65           register various types of "hooks" in addition to just adding
66           server commands.  This is probably not final.
67
68 Tue Sep  8 12:11:56 EDT 1998 Brian Costello <btx@calyx.net>
69         * Added support for dynamic server modules.  Reworked serv_chat.c
70           to be such a module.
71
72 Tue Sep  1 23:09:50 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
73         * userpurge.c: rewrote using functions from the server core, rather
74           than the now-defunct external API.  This'll be ready once the module
75           loading code is done.  (I just had to commit _something_ tonight.)
76
77 Mon Aug 31 22:47:58 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
78         * Yanked the citadelapi.c module.  This wasn't working out well.
79         * techdocs/citadelapi.txt - began documenting the new API to be used
80           by modules which will be dynamic linked into the server - most of
81           this API is existing server functions.
82         * Added a ForEachUser() function with callback mechanism, and reworked
83           cmd_list() to use it.
84
85 Sun Aug 30 21:52:43 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
86         * Moved all of the gdbm databases to a separate "data" directory.
87
88 1998-08-26 Nathan Bryant <bryant@cs.usm.maine.edu>
89         * Makefile.in: realclean removes Makefile, fixed `touch citadel.h'
90           problem
91
92 1998-08-25 Nathan Bryant <bryant@cs.usm.maine.edu>
93         * room_ops.c: include time.h
94         * userlist.c, whobbs.c, serv_chat.c, user_ops.c, sysdep.c, stats.c,
95           citadel_decls.h, commands.c, messages.h, routines.h, routines2.h:
96           remove duplicated declarations
97
98 Mon Aug 24 23:45:01 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
99         * setup.c: Removed yesno_s()
100         * citadel.h, room_ops.c: added QRmtime field to struct quickroom,
101           modified whenever a room is modified or posted in.
102         * citadelapi.c: Added CtdlForEachRoom() function
103
104 Mon Aug 24 20:04:04 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
105         * Makefile.in: new target `cleaner' does the same as `realclean' 
106           without removing sysdep.h
107         * proto.h: is bad. eliminate. I've moved the prototypes into several
108           header files, one per .c file
109
110 Mon Aug 24 00:45:55 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
111         * Added a CtdlGotoRoom() function to the CitadelAPI.
112  
113 Sun Aug 23 21:47:00 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
114         * sysoputil is finally dead!  Removed it from the build.
115         * Added userpurge.c server extension (initial implementation)
116
117 Tue Aug 18 00:42:33 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
118         * Makefile.in: `clean' target no longer rm's sysdep.h; new target
119           `realclean' removes everything clean does, plus sysdep.h, plus
120           target binaries.
121         * Configure: add -Wstrict-prototypes to CFLAGS for gcc systems
122         * *.[ch]: protoized. Added several new header files containing
123           prototypes and other external declarations; many duplicated
124           declarations still should be moved to header files. proto.h must die
125           as well, IMHO.
126
127 Mon Aug 17 23:52:13 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
128         * Implemented a bunch of user account related functions in the
129           CitadelAPI library.
130
131 Mon Aug 17 20:01:18 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
132         * Fixed the crash problem.  It wasn't AGUP/ASUP, but rather a buffer
133           overrun in getuser() (thanks, Nathan).  Implemented overrun checks
134           in getuser(), getroom(), and getfloor() to prevent future problems.
135
136 Mon Aug 17 00:06:52 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
137         * Updated citmail.c with the latest stuff from the production system.
138         * Implemented AGUP and ASUP commands, but AGUP crashes the server
139           after its first successful use (user-not-found's don't affect it).
140
141 Thu Aug  6 19:25:01 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
142         * Got the CitadelAPI library to the point where the server can start
143           up an extension, and the extension will connect to the server, do
144           some initialization, call a user-supplied CtdlMain(), and exit.  Also
145           hacked together a _temporary_ form of the new EXTN server command.
146  
147 Wed Aug  5 23:02:22 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
148         * Second attempt at getting the server API started.  Now it runs
149           outside of the server and builds a connection.
150
151 Tue Aug  4 18:33:06 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
152         * Modified the appearance of Internet addresses when they arrive on
153           a Citadel system.
154         * Removed the <E> field from the message format writeup in hack.txt.
155         * Fixed-up citmail.c so that it doesn't try to do database lookups.
156
157 Mon Aug  3 23:01:37 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
158         * Started developing the server-side API.  This is in its very
159           initial stages.  See serverapi.c and techdoc/api.txt
160
161 1998-08-02  Nathan Bryant  <bryant@cs.usm.maine.edu>
162         * Makefile.in: added config_decls.h to dependencies
163
164 Sun Aug  2 21:09:09 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
165         * config_defs.h: renamed to config_decls.h
166         * config.c, sysoputil.c: updated to reflect the above
167
168 Sun Aug  2 18:52:05 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
169         * config_defs.h: new file, contains external declarations from config.c
170         * config.c: moved defs to config_defs.h, use PATH_MAX from <limits.h>
171           for bbs_home_directory
172         * mailinglist.c, support.c: include <string.h>
173         * sysoputil.c: include <string.h>, <limits.h>, "config_defs.h", remove
174           duplicated defs, replace gets() call with fgets()
175         * user_ops.c: define _XOPEN_SOURCE_EXTENDED
176
177 Sat Aug  1 18:32:52 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
178         * ipc_c_tcp.c: fixed order of memcpy parameters after gethostbyname
179
180 Sun Jul 19 17:26:12 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
181         * ChangeLog: reordered; the GNU standard is to add new entries to the
182           top.
183         * .cvsignore: added userlist
184
185 Sun Jul 12 20:58:59 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
186         * Finished migrating everything to the new data store.
187         * Replaced the binary "calllog" with the ASCII "citadel.log"
188         * Began converting broken utilities that depend on the old data store
189
190 Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
191         * Makefile.in: removed msgstats
192
193 Fri Jul 10 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
194         * Initial CVS import