Annotation of libwww/Library/src/HTBound.html, revision 2.4

2.1       frystyk     1: <HTML>
                      2: <HEAD>
2.4     ! frystyk     3: <TITLE>W3C Sample Code Library libwww MIME multipart parser stream</TITLE>
2.3       frystyk     4: <!-- Changed by: Henrik Frystyk Nielsen, 23-Mar-1996 -->
2.1       frystyk     5: <NEXTID N="z1">
                      6: </HEAD>
                      7: <BODY>
                      8: 
                      9: <H1>MIME Multipart Parser Stream</H1>
                     10: 
                     11: <PRE>
                     12: /*
                     13: **     (c) COPYRIGHT MIT 1995.
                     14: **     Please first read the full copyright statement in the file COPYRIGH.
                     15: */
                     16: </PRE>
                     17: 
                     18: This stream parses a MIME multipart stream and builds a set of new
                     19: streams via the stream stack each time we encounter a boundary start.
                     20: We get the boundary from the normal MIME parser via the Request
                     21: object. As we keep a local copy this also work for nested
                     22: multiparts.<P>
                     23: 
                     24: This module is implemented by <A HREF="HTBound.c">HTBound.c</A>, and it is
                     25: a part of the <A HREF="http://www.w3.org/pub/WWW/Library/">W3C
2.4     ! frystyk    26: Sample Code Library</A>.
2.1       frystyk    27: 
                     28: <PRE>
                     29: #ifndef HTBOUND_H
                     30: #define HTBOUND_H
                     31: #include "HTFormat.h"
                     32: 
                     33: extern HTConverter HTBoundary;
                     34: 
                     35: #endif
                     36: </PRE>
2.3       frystyk    37: 
                     38: <HR>
                     39: <ADDRESS>
2.4     ! frystyk    40: @(#) $Id: HTBound.html,v 2.3 1996/04/12 17:46:08 frystyk Exp $
2.3       frystyk    41: </ADDRESS>
2.1       frystyk    42: </BODY>
                     43: </HTML>

Webmaster