blob: a903bbb85593a08b9409347a9eb7b48cd963fcca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
/* FTP access module for libwww
FTP ACCESS FUNCTIONS
This isn't really a valid protocol module -- it is lumped together with HTFile . That
could be changed easily.
Author: Tim Berners-Lee. Public Domain. Please mail changes to timbl@info.cern.ch
*/
#ifndef HTFTP_H
#define HTFTP_H
#include <HTAnchor.h>
#include <HTStream.h>
#include <HTParse.h>
#ifdef __cplusplus
extern "C" {
#endif
#define FILE_BY_NAME 0
#define FILE_BY_TYPE 1
#define FILE_BY_SIZE 2
#define FILE_BY_DATE 3
extern int HTfileSortMethod; /* specifies the method of sorting */
/* PUBLIC HTVMS_name()
* CONVERTS WWW name into a VMS name
* ON ENTRY:
* nn Node Name (optional)
* fn WWW file name
*
* ON EXIT:
* returns vms file specification
*
* Bug: Returns pointer to static -- non-reentrant
*/
extern char *HTVMS_name(const char *nn,
const char *fn);
/*
Retrieve File from Server
ON EXIT,
returns Socket number for file if good.<0 if bad.
*/
extern int HTFTPLoad(const char *name,
HTParentAnchor *anchor,
HTFormat format_out,
HTStream *sink);
/*
* This function frees any user entered password, so that
* it must be entered again for a future request. - FM
*/
extern void HTClearFTPPassword(void);
/*
Return Host Name
*/
extern const char *HTHostName(void);
#ifdef __cplusplus
}
#endif
#endif
|