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

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: RFC-822 routines (originally from SMTP)
  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: 27 July 1988
  13.  * Last Edited: 13 July 1999
  14.  *
  15.  * Sponsorship: The original version of this work was developed in the
  16.  * Symbolic Systems Resources Group of the Knowledge Systems
  17.  * Laboratory at Stanford University in 1987-88, and was funded
  18.  * by the Biomedical Research Technology Program of the National
  19.  * Institutes of Health under grant number RR-00785.
  20.  *
  21.  * Original version Copyright 1988 by The Leland Stanford Junior University
  22.  * Copyright 1997 by the University of Washington
  23.  *
  24.  *  Permission to use, copy, modify, and distribute this software and its
  25.  * documentation for any purpose and without fee is hereby granted, provided
  26.  * that the above copyright notices appear in all copies and that both the
  27.  * above copyright notices and this permission notice appear in supporting
  28.  * documentation, and that the name of the University of Washington or The
  29.  * Leland Stanford Junior University not be used in advertising or publicity
  30.  * pertaining to distribution of the software without specific, written prior
  31.  * permission.  This software is made available "as is", and
  32.  * THE UNIVERSITY OF WASHINGTON AND THE LELAND STANFORD JUNIOR UNIVERSITY
  33.  * DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO THIS SOFTWARE,
  34.  * INCLUDING WITHOUT LIMITATION ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  35.  * FITNESS FOR A PARTICULAR PURPOSE, AND IN NO EVENT SHALL THE UNIVERSITY OF
  36.  * WASHINGTON OR THE LELAND STANFORD JUNIOR UNIVERSITY BE LIABLE FOR ANY
  37.  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
  38.  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
  39.  * CONTRACT, TORT (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF
  40.  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  41.  *
  42.  */
  43. #define MAXGROUPDEPTH 50 /* RFC 822 doesn't allow nesting at all */
  44. #define MAXMIMEDEPTH 50 /* more than any sane MIMEgram */
  45. #define rfc822_write_address(dest,adr) 
  46.   rfc822_write_address_full (dest,adr,NIL)
  47. #define rfc822_parse_msg(en,bdy,s,i,bs,host,flags) 
  48.   rfc822_parse_msg_full (en,bdy,s,i,bs,host,0,flags)
  49. /* Function prototypes */
  50. void rfc822_header (char *header,ENVELOPE *env,BODY *body);
  51. void rfc822_address_line (char **header,char *type,ENVELOPE *env,ADDRESS *adr);
  52. void rfc822_header_line (char **header,char *type,ENVELOPE *env,char *text);
  53. char *rfc822_write_address_full (char *dest,ADDRESS *adr,char *base);
  54. void rfc822_address (char *dest,ADDRESS *adr);
  55. void rfc822_cat (char *dest,char *src,const char *specials);
  56. void rfc822_write_body_header (char **header,BODY *body);
  57. char *rfc822_default_subtype (unsigned short type);
  58. void rfc822_parse_msg_full (ENVELOPE **en,BODY **bdy,char *s,unsigned long i,
  59.     STRING *bs,char *host,unsigned long depth,
  60.     unsigned long flags);
  61. void rfc822_parse_content (BODY *body,STRING *bs,char *h,unsigned long depth,
  62.    unsigned long flags);
  63. void rfc822_parse_content_header (BODY *body,char *name,char *s);
  64. void rfc822_parse_parameter (PARAMETER **par,char *text);
  65. void rfc822_parse_adrlist (ADDRESS **lst,char *string,char *host);
  66. ADDRESS *rfc822_parse_address (ADDRESS **lst,ADDRESS *last,char **string,
  67.        char *defaulthost,unsigned long depth);
  68. ADDRESS *rfc822_parse_group (ADDRESS **lst,ADDRESS *last,char **string,
  69.      char *defaulthost,unsigned long depth);
  70. ADDRESS *rfc822_parse_mailbox (char **string,char *defaulthost);
  71. long rfc822_phraseonly (char *end);
  72. ADDRESS *rfc822_parse_routeaddr (char *string,char **ret,char *defaulthost);
  73. ADDRESS *rfc822_parse_addrspec (char *string,char **ret,char *defaulthost);
  74. char *rfc822_parse_phrase (char *string);
  75. char *rfc822_parse_word (char *string,const char *delimiters);
  76. char *rfc822_cpy (char *src);
  77. char *rfc822_quote (char *src);
  78. ADDRESS *rfc822_cpy_adr (ADDRESS *adr);
  79. void rfc822_skipws (char **s);
  80. char *rfc822_skip_comment (char **s,long trim);
  81. typedef long (*soutr_t) (void *stream,char *string);
  82. typedef long (*rfc822out_t) (char *t,ENVELOPE *env,BODY *body,soutr_t f,
  83.      void *s,long ok8bit);
  84. long rfc822_output (char *t,ENVELOPE *env,BODY *body,soutr_t f,void *s,
  85.     long ok8bit);
  86. void rfc822_encode_body_7bit (ENVELOPE *env,BODY *body);
  87. void rfc822_encode_body_8bit (ENVELOPE *env,BODY *body);
  88. long rfc822_output_body (BODY *body,soutr_t f,void *s);
  89. void *rfc822_base64 (unsigned char *src,unsigned long srcl,unsigned long *len);
  90. unsigned char *rfc822_binary (void *src,unsigned long srcl,unsigned long *len);
  91. unsigned char *rfc822_qprint (unsigned char *src,unsigned long srcl,
  92.       unsigned long *len);
  93. unsigned char *rfc822_8bit (unsigned char *src,unsigned long srcl,
  94.     unsigned long *len);