Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
HTFTP.h
Package: arena-beta-2b-src.tar.gz [view]
Upload User: zlh9724
Upload Date: 2007-01-04
Package Size: 1991k
Code Size: 1k
Category:
Browser Client
Development Platform:
Unix_Linux
- /* FTP Access
- FTP ACCESS FUNCTIONS
- */
- /*
- ** (c) COPYRIGHT MIT 1995.
- ** Please first read the full copyright statement in the file COPYRIGH.
- */
- /*
- This is the FTP load module that handles all communication with FTP-servers.
- This module is implemented by HTFTP.c, and it is a part of the W3C Reference Library.
- */
- #ifndef HTFTP_H
- #define HTFTP_H
- #include "HTEvntrg.h"
- extern HTEventCallback HTLoadFTP;
- typedef enum _FTPServerType {
- FTP_GENERIC = 0x1,
- FTP_MACHTEN = 0x2,
- FTP_UNIX = 0x4,
- FTP_VMS = 0x8,
- FTP_CMS = 0x10,
- FTP_DCTS = 0x20,
- FTP_TCPC = 0x40,
- FTP_PETER_LEWIS = 0x80,
- FTP_NCSA = 0x200,
- FTP_WINNT = 0x400,
- FTP_UNSURE = 0x8000
- } FTPServerType;
- #define MAX_FTP_LINE 128 /* Don't use more than this */
- /*
- */
- #endif
- /*
- end of HTFTP Module */