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

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: Network News Transfer Protocol (NNTP) 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: 10 February 1992
  13.  * Last Edited: 26 August 1999
  14.  *
  15.  * Copyright 1999 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. /* Constants */
  36. #define MAXLOGINTRIALS 3 /* maximum number of login trials */
  37. #define NNTPTCPPORT (long) 119 /* assigned TCP contact port */
  38. #define NNTPGREET (long) 200 /* NNTP successful greeting */
  39. #define NNTPGREETNOPOST (long) 201
  40. #define NNTPGOK (long) 211 /* NNTP group selection OK */
  41. #define NNTPGLIST (long) 215 /* NNTP group list being returned */
  42. #define NNTPHEAD (long) 221 /* NNTP header text */
  43. #define NNTPBODY (long) 222 /* NNTP body text */
  44. #define NNTPOVER (long) 224 /* NNTP overview text */
  45. #define NNTPOK (long) 240 /* NNTP OK code */
  46. #define NNTPAUTHED (long) 281 /* NNTP successful authentication */
  47. #define NNTPREADY (long) 340 /* NNTP ready for data */
  48. #define NNTPWANTAUTH (long) 380 /* NNTP authentication needed */
  49. #define NNTPWANTPASS (long) 381 /* NNTP password needed */
  50. #define NNTPSOFTFATAL (long) 400/* NNTP soft fatal code */
  51. #define NNTPWANTAUTH2 (long) 480/* NNTP authentication needed (alternate) */
  52. /* NNTP I/O stream local data */
  53. typedef struct nntp_local {
  54.   SENDSTREAM *nntpstream; /* NNTP stream for I/O */
  55.   unsigned int dirty : 1; /* disk copy of .newsrc needs updating */
  56.   char *host; /* local host name */
  57.   char *name; /* local newsgroup name */
  58.   char *user; /* mailbox user */
  59.   unsigned long msgno; /* current text message number */
  60.   FILE *txt; /* current text */
  61.   unsigned long txtsize; /* current text size */
  62. } NNTPLOCAL;
  63. /* Convenient access to local data */
  64. #define LOCAL ((NNTPLOCAL *) stream->local)
  65. /* Convenient access to protocol-specific data */
  66. #define NNTP stream->protocol.nntp
  67. /* Compatibility support names */
  68. #define nntp_open(hostlist,options) 
  69.   nntp_open_full (NIL,hostlist,"nntp",NNTPTCPPORT,options)
  70. /* Function prototypes */
  71. DRIVER *nntp_valid (char *name);
  72. DRIVER *nntp_isvalid (char *name,char *mbx);
  73. void *nntp_parameters (long function,void *value);
  74. void nntp_scan (MAILSTREAM *stream,char *ref,char *pat,char *contents);
  75. void nntp_list (MAILSTREAM *stream,char *ref,char *pat);
  76. void nntp_lsub (MAILSTREAM *stream,char *ref,char *pat);
  77. long nntp_canonicalize (char *ref,char *pat,char *pattern);
  78. long nntp_subscribe (MAILSTREAM *stream,char *mailbox);
  79. long nntp_unsubscribe (MAILSTREAM *stream,char *mailbox);
  80. long nntp_create (MAILSTREAM *stream,char *mailbox);
  81. long nntp_delete (MAILSTREAM *stream,char *mailbox);
  82. long nntp_rename (MAILSTREAM *stream,char *old,char *newname);
  83. long nntp_status (MAILSTREAM *stream,char *mbx,long flags);
  84. MAILSTREAM *nntp_mopen (MAILSTREAM *stream);
  85. void nntp_mclose (MAILSTREAM *stream,long options);
  86. void nntp_fetchfast (MAILSTREAM *stream,char *sequence,long flags);
  87. void nntp_flags (MAILSTREAM *stream,char *sequence,long flags);
  88. long nntp_overview (MAILSTREAM *stream,char *sequence,overview_t ofn);
  89. long nntp_parse_overview (OVERVIEW *ov,char *text);
  90. char *nntp_header (MAILSTREAM *stream,unsigned long msgno,unsigned long *size,
  91.    long flags);
  92. long nntp_text (MAILSTREAM *stream,unsigned long msgno,STRING *bs,long flags);
  93. void nntp_flagmsg (MAILSTREAM *stream,MESSAGECACHE *elt);
  94. void nntp_search (MAILSTREAM *stream,char *charset,SEARCHPGM *pgm,long flags);
  95. long nntp_search_msg (MAILSTREAM *stream,unsigned long msgno,SEARCHPGM *pgm,
  96.       OVERVIEW *ov);
  97. unsigned long *nntp_sort (MAILSTREAM *stream,char *charset,SEARCHPGM *spg,
  98.   SORTPGM *pgm,long flags);
  99. SORTCACHE **nntp_sort_loadcache (MAILSTREAM *stream,SORTPGM *pgm,
  100.  unsigned long start,unsigned long last,
  101.  long flags);
  102. THREADNODE *nntp_thread (MAILSTREAM *stream,char *type,char *charset,
  103.  SEARCHPGM *spg,long flags);
  104. long nntp_ping (MAILSTREAM *stream);
  105. void nntp_check (MAILSTREAM *stream);
  106. void nntp_expunge (MAILSTREAM *stream);
  107. long nntp_copy (MAILSTREAM *stream,char *sequence,char *mailbox,long options);
  108. long nntp_append (MAILSTREAM *stream,char *mailbox,char *flags,char *date,
  109.   STRING *message);
  110. SENDSTREAM *nntp_open_full (NETDRIVER *dv,char **hostlist,char *service,
  111.     unsigned long port,long options);
  112. SENDSTREAM *nntp_close (SENDSTREAM *stream);
  113. long nntp_mail (SENDSTREAM *stream,ENVELOPE *msg,BODY *body);
  114. long nntp_send (SENDSTREAM *stream,char *command,char *args);
  115. long nntp_send_work (SENDSTREAM *stream,char *command,char *args);
  116. long nntp_send_auth (SENDSTREAM *stream);
  117. long nntp_send_auth_work (SENDSTREAM *stream,NETMBX *mb,char *tmp);
  118. long nntp_reply (SENDSTREAM *stream);
  119. long nntp_fake (SENDSTREAM *stream,long code,char *text);
  120. long nntp_soutr (void *stream,char *s);