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