]> code.citadel.org Git - citadel.git/commitdiff
Test of automatically updating ChangeLog
authorArt Cancro <ajc@citadel.org>
Sat, 24 Jul 1999 21:32:01 +0000 (21:32 +0000)
committerArt Cancro <ajc@citadel.org>
Sat, 24 Jul 1999 21:32:01 +0000 (21:32 +0000)
citadel/ChangeLog
citadel/serv_icq.c

index fe0040aa4ada968a790e392573e53e4081b1a325..d08abaa22d2bc709e5d1a14d855aca3feef84c34 100644 (file)
@@ -1,3 +1,8 @@
+$Log$
+Revision 1.327  1999/07/24 21:32:01  ajc
+Test of automatically updating ChangeLog
+
+
 Thu Jul 22 22:26:50 EDT 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * Moved message deletion into new API function CtdlDeleteMessages()
        * Added CtdlWriteObject() to store generic data in the msgbase
index 473acf3e746e03bbdca1df8b6520b261effdccf8..86d52f06af82ae1ff142f07c6887d1788c857e53 100644 (file)
@@ -5,38 +5,8 @@
  * written implementation of the Mirabilis ICQ client protocol.  The library
  * has been modified rather than merely utilized because we need it to be
  * threadsafe in order to tie it into the Citadel server.
-
- $Id$
- $Log$
- Revision 1.3  1999/07/24 21:26:01  ajc
- n more log
-
- Revision 1.2  1999/07/23 04:27:45  ajc
- Added CtdlWriteObject() to store generic data in the msgbase
-
- Revision 1.1  1999/07/19 04:12:49  ajc
-         * serv_icq.c, serv_icq.mk: added (separate makefile is temporary)
-
- Revision 1.16  1998/12/08 16:00:59  denis
- Cleaned up a little before releasing
-
- Revision 1.15  1998/11/25 19:18:16  denis
- Added close icq_ProxySok in icq_Disconnect
-
- Revision 1.14  1998/11/25 09:48:49  denis
- icq_GetProxySok and icq_HandleProxyResponse methods added
- Connection terminated support added
-
- Revision 1.13  1998/11/19 12:22:48  denis
- SOCKS support cleaned a little
- icq_RecvUrl renamed to icq_RecvURL
- icq_ProxyAuth added for Username/Password Authentication
- URL/Description order inverted
- icq_Quit splitted to icq_Logout and icq_Disconnect
- icq_ProxyName and icq_ProxyPass range checking added
-
- Revision 1.12  1998/11/18 16:21:29  denis
- Fixed SOCKS5 proxy support
+ *
+ * $Id$
  */
 
 #include "serv_icq.h"
@@ -90,10 +60,19 @@ struct ctdl_icq_handle {
 };
 
 /* <ig> */
+
+/* ICQROOM is the name of the room in which each user's ICQ configuration
+ * and contact lists will be stored.  (It's a personal room.)
+ */
 #define ICQROOM                "My ICQ Config"
+
+/* MIME type to use for storing a user's ICQ uin, password, etc. */
 #define ICQMIME                "application/x-citadel-icq"
+
+/* Citadel server TSD symbol for use by serv_icq */
 unsigned long SYM_CTDL_ICQ;
 #define ThisICQ ((struct ctdl_icq_handle *)CtdlGetUserData(SYM_CTDL_ICQ))
+
 extern struct CitContext *ContextList;
 #define MODULE_NAME    "ICQ metaclient"
 #define MODULE_AUTHOR  "Art Cancro"