Annotation of libwww/Library/src/WWWFTP.html, revision 2.7

2.1       frystyk     1: <HTML>
                      2: <HEAD>
2.6       frystyk     3:   <TITLE>W3C Sample Code Library libwww FTP CLIENT</TITLE>
2.1       frystyk     4: </HEAD>
                      5: <BODY>
2.6       frystyk     6: <H1>
                      7:   Declaration of W3C Sample Code FTP MODULE
                      8: </H1>
2.1       frystyk     9: <PRE>
                     10: /*
                     11: **     (c) COPYRIGHT MIT 1995.
                     12: **     Please first read the full copyright statement in the file COPYRIGH.
                     13: */
                     14: </PRE>
2.6       frystyk    15: <P>
                     16: This is the include file for the basic FTP module that can be used together
                     17: with the <A HREF="WWWCore.html">core of the W3C Sample Code Library</A>.
                     18: It contains all FTP specific modules which are required to compile and build
                     19: the FTP DLL.
2.1       frystyk    20: <PRE>
                     21: #ifndef WWWFTP_H
                     22: #define WWWFTP_H
                     23: </PRE>
                     24: <PRE>
                     25: #ifdef __cplusplus
                     26: extern "C" { 
                     27: #endif
                     28: </PRE>
2.6       frystyk    29: <H2>
                     30:   System dependencies
                     31: </H2>
                     32: <P>
2.7     ! frystyk    33: The <A HREF="wwwsys.html">wwwsys.h</A> file includes system-specific include
2.6       frystyk    34: files and flags for I/O to network and disk. The only reason for this file
                     35: is that the Internet world is more complicated than Posix and ANSI.
2.1       frystyk    36: <PRE>
2.7     ! frystyk    37: #include "wwwsys.h"
2.4       frystyk    38: </PRE>
2.6       frystyk    39: <H2>
                     40:   Library Includes
                     41: </H2>
                     42: <H3>
                     43:   The main FTP state machine
                     44: </H3>
                     45: <PRE>
                     46: #include "<A HREF="HTFTP.html">HTFTP.h</A>"                    /* FTP client state machine */
                     47: </PRE>
                     48: <H3>
                     49:   The FTP Directory listing Management
                     50: </H3>
2.4       frystyk    51: <PRE>
2.6       frystyk    52: #include "<A HREF="HTFTPDir.html">HTFTPDir.h</A>"                      /* Streams for parsing FTP output */
2.1       frystyk    53: </PRE>
2.6       frystyk    54: <P>
2.1       frystyk    55: End of FTP module
                     56: <PRE>
                     57: #ifdef __cplusplus
                     58: } /* end extern C definitions */
                     59: #endif
                     60: 
                     61: #endif
                     62: </PRE>
2.6       frystyk    63: <P>
                     64:   <HR>
2.3       frystyk    65: <ADDRESS>
2.7     ! frystyk    66:   @(#) $Id: WWWFTP.html,v 2.6 1998/03/25 15:10:03 frystyk Exp $
2.3       frystyk    67: </ADDRESS>
2.6       frystyk    68: </BODY></HTML>

Webmaster