File:  [Public] / libwww / Library / src / WWWFTP.html
Revision 2.7: download - view: text, annotated - select for diffs
Mon May 4 19:37:49 1998 UTC (26 years, 1 month ago) by frystyk
Branches: MAIN
CVS tags: repeat-requests, candidate-5-4-1, before_webdav, Release-5-4-0, Release-5-3-1, Release-5-2-8, Release-5-2-6, Release-5-2, Release-5-1m, HEAD, Before-New-Trace-Messages, Amaya_2_4, Amaya-6-3, Amaya-6-1, Amaya-5-2, Amaya-4-3-2, Amaya-4-3-1, Amaya-4-3, Amaya-4-1-2, Amaya-4-1-0, Amaya-4-0-0, Amaya-3-2-1, Amaya-3-2, Amaya
version 5.1m

<HTML>
<HEAD>
  <TITLE>W3C Sample Code Library libwww FTP CLIENT</TITLE>
</HEAD>
<BODY>
<H1>
  Declaration of W3C Sample Code FTP MODULE
</H1>
<PRE>
/*
**	(c) COPYRIGHT MIT 1995.
**	Please first read the full copyright statement in the file COPYRIGH.
*/
</PRE>
<P>
This is the include file for the basic FTP module that can be used together
with the <A HREF="WWWCore.html">core of the W3C Sample Code Library</A>.
It contains all FTP specific modules which are required to compile and build
the FTP DLL.
<PRE>
#ifndef WWWFTP_H
#define WWWFTP_H
</PRE>
<PRE>
#ifdef __cplusplus
extern "C" { 
#endif
</PRE>
<H2>
  System dependencies
</H2>
<P>
The <A HREF="wwwsys.html">wwwsys.h</A> file includes system-specific include
files and flags for I/O to network and disk. The only reason for this file
is that the Internet world is more complicated than Posix and ANSI.
<PRE>
#include "wwwsys.h"
</PRE>
<H2>
  Library Includes
</H2>
<H3>
  The main FTP state machine
</H3>
<PRE>
#include "<A HREF="HTFTP.html">HTFTP.h</A>"			/* FTP client state machine */
</PRE>
<H3>
  The FTP Directory listing Management
</H3>
<PRE>
#include "<A HREF="HTFTPDir.html">HTFTPDir.h</A>"			/* Streams for parsing FTP output */
</PRE>
<P>
End of FTP module
<PRE>
#ifdef __cplusplus
} /* end extern C definitions */
#endif

#endif
</PRE>
<P>
  <HR>
<ADDRESS>
  @(#) $Id: WWWFTP.html,v 2.7 1998/05/04 19:37:49 frystyk Exp $
</ADDRESS>
</BODY></HTML>

Webmaster