HTMIMERq.h
上传用户:zlh9724
上传日期:2007-01-04
资源大小:1991k
文件大小:1k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. /*                                                                        MIME Request Stream
  2.                                    MIME REQUEST STREAM
  3.                                              
  4.    The MIME Request stream generates a MIME request header and writes it to the target
  5.    which is normally a HTWriter stream.
  6.    
  7.    This module is implemented by HTMIMERq.c, and it is a part of the  W3C Reference
  8.    Library.
  9.    
  10.  */
  11. #ifndef HTMIMERQ_H
  12. #define HTMIMERQ_H
  13. #include "HTStream.h"
  14. #include "HTReq.h"
  15. /*
  16.   STREAMS DEFINITION
  17.   
  18.    This stream makes a MIME header before it goes into transparent mode. If endHeader is
  19.    YES then we send an empty CRLF in order to end the header.
  20.    
  21.  */
  22. extern HTStream * HTMIMERequest_new    (HTRequest * request, HTStream * target,
  23.                                         BOOL endHeader);
  24. #endif
  25. /*
  26.    End of HTMIMERq */