* Fixed buffer overrun problems in cmd_rchg(), cmd_hchg(), and cmd_uchg()
[citadel.git] / citadel / ChangeLog
index 1ab0cbaa1d1c38549ede456876761da5e8366df3..38bacd21c573bf68fdcd8b71243e9fa057497fef 100644 (file)
@@ -1,4 +1,62 @@
 $Log$
+Revision 1.411  1999/11/03 04:01:20  ajc
+* Fixed buffer overrun problems in cmd_rchg(), cmd_hchg(), and cmd_uchg()
+* Removed my email address as the feedback content from the docs; replaced
+  it with a reference to the Citadel/UX web site.
+
+Revision 1.410  1999/11/02 19:51:23  ajc
+* Fixed timeout problem for remote client sessions (all timeouts were set to
+  1 second ... probably a temporary hack that was missed in the cleanup)
+
+Revision 1.409  1999/11/02 03:03:27  ajc
+* Several fixes to msgbase.c and netproc.c to prevent corrupted incoming
+  network traffic from crashing the server.  Reject bad messages.
+
+Revision 1.408  1999/11/01 04:21:34  ajc
+* Fixed a concurrency bug which crashed the server when multiple sessions
+  terminated simultaneously.
+
+Revision 1.407  1999/11/01 00:54:02  ajc
+* CtdlFetchMessage() - generate a "<no text>" message body if there's none
+  on disk.  Too much stuff goes haywire if there's no M field.
+
+Revision 1.406  1999/10/31 18:17:17  ajc
+* Fixed buffer overrun in cmd_rchg()
+* Call master_cleanup() when time_to_die==1 for proper shutdown
+
+Revision 1.405  1999/10/31 16:26:55  ajc
+* Fixed incorrect assignment of new session ID's
+
+Revision 1.404  1999/10/31 04:17:17  ajc
+* Fixed a bug which was crashing the server during very long message entry.
+
+Revision 1.403  1999/10/29 01:48:45  ajc
+* database.c: Removed arbitrary limit on maximum number of sessions
+
+Revision 1.402  1999/10/29 01:03:03  ajc
+* Debugged all possible ways for a session to terminate; do them cleanly.
+* Assign session numbers in a more portable and less arbitrary way.
+
+Revision 1.401  1999/10/28 19:50:55  ajc
+* Fixed a problem where the client protocol would spit out two responses
+  and therefore get out of sync if ASUP command set the access level to
+  0 and therefore deleted the user (thanks to Eric McDonald)
+
+Revision 1.400  1999/10/28 05:08:49  ajc
+* Removed all of the thread cancellation cruft that is no longer necessary
+* Moved the now non-system-dependent RemoveContext() out of sysdep.c (now
+  it's part of cleanup() in citserver.c)
+* Removed all references to pthread_* from all modules except sysdep.c
+
+Revision 1.399  1999/10/28 03:20:17  ajc
+* Fixed the problem of worker threads waking up prematurely.
+* 'QUIT'-terminated sessions now exit properly.
+
+Revision 1.398  1999/10/27 04:26:58  ajc
+* Initial hack of worker-thread rearchitecture.  Right now it is successfully
+  dispatching worker threads to active client sockets (and to the master
+  socket too, of course).  Removing sessions is currently broken.
+
 Revision 1.397  1999/10/26 20:20:29  ajc
 * Removed the auto-reconnect stuff... it was locking the client in an active
   loop more often than it was reconnecting.