File:  [Public] / libwww / Library / src / HTTPReq.html
Revision 2.8: download - view: text, annotated - select for diffs
Wed Jan 31 22:41:03 1996 UTC (28 years, 3 months ago) by frystyk
Branches: MAIN
CVS tags: v4/0D, autoconf, HEAD
4.0D

<HTML>
<HEAD>
<TITLE>HTTP Request Stream</TITLE>
<!-- Changed by: Henrik Frystyk Nielsen, 29-Jan-1996 -->
</HEAD>
<BODY>

<H1>HTTP Request Stream</H1>

The HTTP Request stream generates a HTTP request header and writes it
to the target which is normally a HTWriter stream.<P>

This module is implemented by <A HREF="HTTPReq.c">HTTPReq.c</A>, and
it is a part of the <A HREF="http://www.w3.org/pub/WWW/Library/"> W3C
Reference Library</A>.

<PRE>
#ifndef HTTPREQ_H
#define HTTPREQ_H

#include "HTStream.h"
#include "HTReq.h"
</PRE>

<H3>Streams Definition</H3>

This stream makes a HTTP request header before it goes into
transparent mode. If <CODE>endHeader</CODE> is YES then we send an
empty <CODE>CRLF</CODE> in order to end the header.

<PRE>
extern HTStream * HTTPRequest_new (HTRequest * request, HTStream * target,
				   BOOL endHeader);
</PRE>

<PRE>
#endif
</PRE>

End of declaration
</BODY>
</HTML>


Webmaster