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

2.1       frystyk     1: <HTML>
                      2: <HEAD>
2.4     ! frystyk     3: <TITLE>W3C Sample Code Library libwww FTP DIRECTORY LISTING</TITLE>
2.3       frystyk     4: <!-- Changed by: Henrik Frystyk Nielsen, 23-Mar-1996 -->
2.1       frystyk     5: </HEAD>
                      6: <BODY>
                      7: 
                      8: <H1>FTP Directory Listings</H1>
                      9: 
                     10: <PRE>
                     11: /*
                     12: **     (c) COPYRIGHT MIT 1995.
                     13: **     Please first read the full copyright statement in the file COPYRIGH.
                     14: */
                     15: </PRE>
                     16: 
                     17: This module converts a FTP directory listing to a HTML object<P>
                     18: 
                     19: This module is implemented by <A HREF="HTFTPDir.c">HTFTPDir.c</A>, and it is
                     20: a part of the <A HREF="http://www.w3.org/pub/WWW/Library/">W3C
2.4     ! frystyk    21: Sample Code Library</A>.
2.1       frystyk    22: 
                     23: <PRE>
                     24: #ifndef HTFTPDIR_H
                     25: #define HTFTPDIR_H
                     26: 
                     27: #include "HTStream.h"
                     28: #include "HTFTP.h"
                     29: 
                     30: extern HTStream * HTFTPDir_new (HTRequest *    request,
                     31:                                FTPServerType   server,
                     32:                                char            list);
                     33: #endif
                     34: 
                     35: </PRE>
2.3       frystyk    36: 
                     37: <HR>
                     38: <ADDRESS>
2.4     ! frystyk    39: @(#) $Id: HTFTPDir.html,v 2.3 1996/04/12 17:46:50 frystyk Exp $
2.3       frystyk    40: </ADDRESS>
2.1       frystyk    41: </BODY>
                     42: </HTML>

Webmaster