pop3.h
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:4k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: Post Office Protocol 3 (POP3) client routines
  3.  *
  4.  * Author: Mark Crispin
  5.  * Networks and Distributed Computing
  6.  * Computing & Communications
  7.  * University of Washington
  8.  * Administration Building, AG-44
  9.  * Seattle, WA  98195
  10.  * Internet: MRC@CAC.Washington.EDU
  11.  *
  12.  * Date: 6 June 1994
  13.  * Last Edited: 13 October 1998
  14.  *
  15.  * Copyright 1998 by the University of Washington
  16.  *
  17.  *  Permission to use, copy, modify, and distribute this software and its
  18.  * documentation for any purpose and without fee is hereby granted, provided
  19.  * that the above copyright notices appear in all copies and that both the
  20.  * above copyright notices and this permission notice appear in supporting
  21.  * documentation, and that the name of the University of Washington not be
  22.  * used in advertising or publicity pertaining to distribution of the software
  23.  * without specific, written prior permission.  This software is made
  24.  * available "as is", and
  25.  * THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  26.  * WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  27.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  28.  * NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  29.  * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
  30.  * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  31.  * (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN
  32.  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  33.  *
  34.  */
  35. /* POP3 specific definitions */
  36. /* Parameters */
  37. #define MAXLOGINTRIALS 3 /* maximum number of login trials */
  38. #define POP3TCPPORT (long) 110 /* assigned TCP contact port */
  39. /* POP3 I/O stream local data */
  40. typedef struct pop3_local {
  41.   NETSTREAM *netstream; /* TCP I/O stream */
  42.   char *response; /* last server reply */
  43.   char *reply; /* text of last server reply */
  44.   unsigned long msgno; /* current text message number */
  45.   unsigned long hdrsize; /* current text header size */
  46.   FILE *txt; /* current text */
  47. } POP3LOCAL;
  48. /* Convenient access to local data */
  49. #define LOCAL ((POP3LOCAL *) stream->local)
  50. /* Function prototypes */
  51. DRIVER *pop3_valid (char *name);
  52. void *pop3_parameters (long function,void *value);
  53. void pop3_scan (MAILSTREAM *stream,char *ref,char *pat,char *contents);
  54. void pop3_list (MAILSTREAM *stream,char *ref,char *pat);
  55. void pop3_lsub (MAILSTREAM *stream,char *ref,char *pat);
  56. long pop3_subscribe (MAILSTREAM *stream,char *mailbox);
  57. long pop3_unsubscribe (MAILSTREAM *stream,char *mailbox);
  58. long pop3_create (MAILSTREAM *stream,char *mailbox);
  59. long pop3_delete (MAILSTREAM *stream,char *mailbox);
  60. long pop3_rename (MAILSTREAM *stream,char *old,char *newname);
  61. long pop3_status (MAILSTREAM *stream,char *mbx,long flags);
  62. MAILSTREAM *pop3_open (MAILSTREAM *stream);
  63. long pop3_auth (MAILSTREAM *stream,NETMBX *mb,char *tmp,char *usr);
  64. void *pop3_challenge (void *stream,unsigned long *len);
  65. long pop3_response (void *stream,char *s,unsigned long size);
  66. void pop3_close (MAILSTREAM *stream,long options);
  67. void pop3_fetchfast (MAILSTREAM *stream,char *sequence,long flags);
  68. char *pop3_header (MAILSTREAM *stream,unsigned long msgno,unsigned long *size,
  69.    long flags);
  70. long pop3_text (MAILSTREAM *stream,unsigned long msgno,STRING *bs,long flags);
  71. unsigned long pop3_cache (MAILSTREAM *stream,MESSAGECACHE *elt);
  72. long pop3_ping (MAILSTREAM *stream);
  73. void pop3_check (MAILSTREAM *stream);
  74. void pop3_expunge (MAILSTREAM *stream);
  75. long pop3_copy (MAILSTREAM *stream,char *sequence,char *mailbox,long options);
  76. long pop3_append (MAILSTREAM *stream,char *mailbox,char *flags,char *date,
  77.   STRING *message);
  78. long pop3_send_num (MAILSTREAM *stream,char *command,unsigned long n);
  79. long pop3_send (MAILSTREAM *stream,char *command,char *args);
  80. long pop3_reply (MAILSTREAM *stream);
  81. long pop3_fake (MAILSTREAM *stream,char *text);