Update of /cvsroot/mahogany/M/lib/imap/src/c-client
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1515/src/c-client

Modified Files:
        pop3.c mail.h 
Log Message:
merged in UW_IMAP_2004 changes

Index: pop3.c
===================================================================
RCS file: /cvsroot/mahogany/M/lib/imap/src/c-client/pop3.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -b -u -2 -r1.3 -r1.4
--- pop3.c      28 Apr 2004 22:45:54 -0000      1.3
+++ pop3.c      11 May 2004 18:17:44 -0000      1.4
@@ -11,5 +11,5 @@
  *
  * Date:       6 June 1994
- * Last Edited:        15 March 2004
+ * Last Edited:        4 May 2004
  * 
  * The IMAP toolkit provided in this Distribution is
@@ -34,4 +34,5 @@
 #define POP3TCPPORT (long) 110 /* assigned TCP contact port */
 #define POP3SSLPORT (long) 995 /* assigned SSL TCP contact port */
+#define IDLETIMEOUT (long) 10  /* defined in RFC 1939 */
 
 
@@ -205,4 +206,7 @@
     value = (void *) pop3_sslport;
     break;
+  case GET_IDLETIMEOUT:
+    value = (void *) IDLETIMEOUT;
+    break;
   default:
     value = NIL;               /* error case */

Index: mail.h
===================================================================
RCS file: /cvsroot/mahogany/M/lib/imap/src/c-client/mail.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -b -u -2 -r1.3 -r1.4
--- mail.h      28 Apr 2004 22:45:54 -0000      1.3
+++ mail.h      11 May 2004 18:17:44 -0000      1.4
@@ -11,5 +11,5 @@
  *
  * Date:       22 November 1989
- * Last Edited:        22 March 2004
+ * Last Edited:        4 May 2004
  * 
  * The IMAP toolkit provided in this Distribution is
@@ -231,4 +231,6 @@
 #define GET_SENDCOMMAND (long) 450
 #define SET_SENDCOMMAND (long) 451
+#define GET_IDLETIMEOUT (long) 452
+#define SET_IDLETIMEOUT (long) 452
 
        /* 5xx: local file drivers */
@@ -618,5 +620,5 @@
   char *remail;                        /* remail header if any */
   ADDRESS *return_path;                /* error return address */
-  char *date;                  /* message composition date string */
+  unsigned char *date;         /* message composition date string */
   ADDRESS *from;               /* originator address list */
   ADDRESS *sender;             /* sender address list */



-------------------------------------------------------
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to