Annotation of libwww/Library/src/HTWriter.html, revision 2.8

2.5       timbl       1: <HTML>
                      2: <HEAD>
                      3: <TITLE>Socket writer for libwww</TITLE>
                      4: </HEAD>
                      5: <BODY>
2.7       frystyk     6: 
                      7: <H1>Unix File descriptor or Socket Writer</H1>
                      8: 
                      9: <PRE>
                     10: /*
                     11: **     (c) COPYRIGHT CERN 1994.
                     12: **     Please first read the full copyright statement in the file COPYRIGH.
                     13: */
                     14: </PRE>
                     15: 
                     16: This version of the stream object just writes to a socket. The socket
2.5       timbl      17: is assumed open and closed afterward.There are two versions (identical
2.7       frystyk    18: on ASCII machines) one of which converts to ASCII on output.<P>
                     19: 
                     20: This module is implemented by <A HREF="HTWriter.c">HTWriter.c</A>, and
                     21: it is a part of the <A
                     22: HREF="http://info.cern.ch/hypertext/WWW/Library/User/Guide/Guide.html">
                     23: Library of Common Code</A>.
                     24: 
2.5       timbl      25: <H3>Bugs:</H3>
                     26: <UL>
                     27: <LI>strings written must be less than
                     28: buffer size.
                     29: </UL>
                     30: <PRE>#ifndef HTWRITE_H
2.1       timbl      31: #define HTWRITE_H
                     32: 
2.8     ! roeber     33: #include "sysdep.h"
2.1       timbl      34: #include "HTStream.h"
                     35: 
                     36: extern HTStream * HTWriter_new PARAMS((int soc));
2.6       luotonen   37: extern HTStream * HTWriter_newNoClose PARAMS((int soc));
2.1       timbl      38: 
                     39: extern HTStream * HTASCIIWriter PARAMS((int soc));
                     40: 
                     41: #endif
2.5       timbl      42: 
                     43: </PRE>end</BODY>
                     44: </HTML>

Webmaster