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