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