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