File: FTPSocket.3cc

package info (click to toggle)
libcommoncpp2 1.0.13-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,740 kB
  • ctags: 2,860
  • sloc: cpp: 18,857; sh: 8,451; ansic: 1,546; makefile: 299; xml: 5
file content (317 lines) | stat: -rw-r--r-- 7,317 bytes parent folder | download
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
.TH "FTPSocket" 3 "19 Jul 2003" "CommonC++" \" -*- nroff -*-
.ad l
.nh
.SH NAME
FTPSocket \- This class represents a FTP-client to be used in c++-programms. ftp access stream class. 
.SH SYNOPSIS
.br
.PP
\fC#include <ftp.h>\fP
.PP
.SS "Public Types"

.in +1c
.ti -1c
.RI "typedef set< \fBDirEntry\fP, \fBDirEntry::Compare\fP > \fBDirType\fP"
.br
.RI "\fIset of direntries\fP"
.in -1c
.SS "Public Methods"

.in +1c
.ti -1c
.RI "void \fBsendCommand\fP (string cmd)"
.br
.RI "\fIlow level functions\fP"
.ti -1c
.RI "int \fBgetResponse\fP (string *resp=0)"
.br
.ti -1c
.RI "\fBFTPSocket\fP ()"
.br
.RI "\fIempty constructor\fP"
.ti -1c
.RI "\fBFTPSocket\fP (\fBInetHostAddress\fP host, \fBtimeout_t\fP to=0)"
.br
.RI "\fIconstructor; connects to a host on creation\fP"
.ti -1c
.RI "\fBFTPSocket\fP (\fBInetHostAddress\fP host, string user, string passwd, \fBtimeout_t\fP to=0)"
.br
.RI "\fIconstructor; connects to a host and logs in\fP"
.ti -1c
.RI "\fB~FTPSocket\fP ()"
.br
.RI "\fIdestructor; logs out and disconnects if needed\fP"
.ti -1c
.RI "void \fBsetAscii\fP ()"
.br
.RI "\fIset ascii-mode for datatransfer\fP"
.ti -1c
.RI "void \fBsetEbcdic\fP ()"
.br
.RI "\fIset ebcdic-mode for datatransfer\fP"
.ti -1c
.RI "void \fBsetBinary\fP ()"
.br
.RI "\fIset binary-mode for datatransfer\fP"
.ti -1c
.RI "string \fBcommand\fP (string cmd)"
.br
.RI "\fIprocess a ftp-command\fP"
.ti -1c
.RI "void \fBopen\fP (\fBInetHostAddress\fP host, \fBtimeout_t\fP to=0)"
.br
.RI "\fIsessionmanagement\fP"
.ti -1c
.RI "void \fBopen\fP (\fBInetHostAddress\fP host, string user, string passwd, \fBtimeout_t\fP to=0)"
.br
.RI "\fIcreates a connection to host and logs in\fP"
.ti -1c
.RI "void \fBlogin\fP (string user, string passwd)"
.br
.RI "\fIlogs in to a host; connection must be set up\fP"
.ti -1c
.RI "void \fBclose\fP (void)"
.br
.RI "\fIlog out\fP"
.ti -1c
.RI "void \fBquit\fP (void)"
.br
.RI "\fIclose connection\fP"
.ti -1c
.RI "\fBDirType\fP \fBgetDir\fP (string dir='', \fBtimeout_t\fP to=0)"
.br
.RI "\fIget directory\fP"
.ti -1c
.RI "string \fBpwd\fP (void)"
.br
.RI "\fIget current working directory on the server\fP"
.ti -1c
.RI "void \fBcwd\fP (string dir)"
.br
.RI "\fIchange current working directory on the server\fP"
.ti -1c
.RI "void \fBcdup\fP (void)"
.br
.RI "\fIchange current working directory\fP"
.ti -1c
.RI "void \fBput\fP (string file, string rfilename, \fBtimeout_t\fP to=0)"
.br
.RI "\fIsend local file to remote\fP"
.ti -1c
.RI "void \fBput\fP (string file, \fBtimeout_t\fP to=0)"
.br
.RI "\fIsend local file to remote; local and remote filenames are identical\fP"
.ti -1c
.RI "void \fBget\fP (string file, string lfilename, \fBtimeout_t\fP to=0)"
.br
.RI "\fIget file from server\fP"
.ti -1c
.RI "void \fBget\fP (string file, \fBtimeout_t\fP to=0)"
.br
.RI "\fIget file from server; local and remote filenames are identical\fP"
.ti -1c
.RI "void \fBremove\fP (string file)"
.br
.RI "\fIdelete file from server\fP"
.ti -1c
.RI "void \fBrename\fP (string from, string to)"
.br
.RI "\fIrename file on server\fP"
.ti -1c
.RI "void \fBmkdir\fP (string dir)"
.br
.RI "\fIcreate directory on server\fP"
.ti -1c
.RI "void \fBrmdir\fP (string dir)"
.br
.RI "\fIremove directory on server\fP"
.in -1c
.SS "Static Public Methods"

.in +1c
.ti -1c
.RI "void \fBsetDebug\fP (int d=1)"
.br
.RI "\fIenable debugging\fP"
.ti -1c
.RI "int \fBgetDebug\fP ()"
.br
.RI "\fIqueries debugging\fP"
.in -1c
.SS "Protected Attributes"

.in +1c
.ti -1c
.RI "\fBTCPStream\fP * \fBcs\fP"
.br
.in -1c
.SS "Static Protected Attributes"

.in +1c
.ti -1c
.RI "int \fBdebug\fP"
.br
.in -1c
.SS "Friends"

.in +1c
.ti -1c
.RI "class \fBoftpstream\fP"
.br
.ti -1c
.RI "class \fBiftpstream\fP"
.br
.in -1c
.SH "DETAILED DESCRIPTION"
.PP 
This class represents a FTP-client to be used in c++-programms. ftp access stream class.
.PP
It is based on the CommonC++-Framework.
.PP
\fBAuthor: \fP
.in +1c
Dr. Eckhardt and Partner GmbH 
.PP
.SH "MEMBER TYPEDEF DOCUMENTATION"
.PP 
.SS "typedef set<\fBDirEntry\fP, \fBDirEntry::Compare\fP> FTPSocket::DirType"
.PP
set of direntries
.PP
.SH "CONSTRUCTOR & DESTRUCTOR DOCUMENTATION"
.PP 
.SS "FTPSocket::FTPSocket ()"
.PP
empty constructor
.PP
.SS "FTPSocket::FTPSocket (\fBInetHostAddress\fP host, \fBtimeout_t\fP to = 0)\fC [explicit]\fP"
.PP
constructor; connects to a host on creation
.PP
.SS "FTPSocket::FTPSocket (\fBInetHostAddress\fP host, string user, string passwd, \fBtimeout_t\fP to = 0)"
.PP
constructor; connects to a host and logs in
.PP
.SS "FTPSocket::~FTPSocket ()"
.PP
destructor; logs out and disconnects if needed
.PP
.SH "MEMBER FUNCTION DOCUMENTATION"
.PP 
.SS "void FTPSocket::cdup (void)"
.PP
change current working directory
.PP
.SS "void FTPSocket::close (void)"
.PP
log out
.PP
.SS "string FTPSocket::command (string cmd)"
.PP
process a ftp-command
.PP
.SS "void FTPSocket::cwd (string dir)"
.PP
change current working directory on the server
.PP
.SS "void FTPSocket::get (string file, \fBtimeout_t\fP to = 0)\fC [inline]\fP"
.PP
get file from server; local and remote filenames are identical
.PP
.SS "void FTPSocket::get (string file, string lfilename, \fBtimeout_t\fP to = 0)"
.PP
get file from server
.PP
.SS "int FTPSocket::getDebug ()\fC [inline, static]\fP"
.PP
queries debugging
.PP
.SS "\fBDirType\fP FTPSocket::getDir (string dir = '', \fBtimeout_t\fP to = 0)"
.PP
get directory
.PP
.SS "int FTPSocket::getResponse (string * resp = 0)"
.PP
.SS "void FTPSocket::login (string user, string passwd)"
.PP
logs in to a host; connection must be set up
.PP
.SS "void FTPSocket::mkdir (string dir)"
.PP
create directory on server
.PP
.SS "void FTPSocket::open (\fBInetHostAddress\fP host, string user, string passwd, \fBtimeout_t\fP to = 0)"
.PP
creates a connection to host and logs in
.PP
.SS "void FTPSocket::open (\fBInetHostAddress\fP host, \fBtimeout_t\fP to = 0)"
.PP
sessionmanagement
.PP
creates a connection to host 
.SS "void FTPSocket::put (string file, \fBtimeout_t\fP to = 0)\fC [inline]\fP"
.PP
send local file to remote; local and remote filenames are identical
.PP
.SS "void FTPSocket::put (string file, string rfilename, \fBtimeout_t\fP to = 0)"
.PP
send local file to remote
.PP
.SS "string FTPSocket::pwd (void)"
.PP
get current working directory on the server
.PP
.SS "void FTPSocket::quit (void)"
.PP
close connection
.PP
.SS "void FTPSocket::remove (string file)"
.PP
delete file from server
.PP
.SS "void FTPSocket::rename (string from, string to)"
.PP
rename file on server
.PP
.SS "void FTPSocket::rmdir (string dir)"
.PP
remove directory on server
.PP
.SS "void FTPSocket::sendCommand (string cmd)"
.PP
low level functions
.PP
.SS "void FTPSocket::setAscii ()"
.PP
set ascii-mode for datatransfer
.PP
.SS "void FTPSocket::setBinary ()"
.PP
set binary-mode for datatransfer
.PP
.SS "void FTPSocket::setDebug (int d = 1)\fC [inline, static]\fP"
.PP
enable debugging
.PP
.SS "void FTPSocket::setEbcdic ()"
.PP
set ebcdic-mode for datatransfer
.PP
.SH "FRIENDS AND RELATED FUNCTION DOCUMENTATION"
.PP 
.SS "friend class iftpstream\fC [friend]\fP"
.PP
.SS "friend class oftpstream\fC [friend]\fP"
.PP
.SH "MEMBER DATA DOCUMENTATION"
.PP 
.SS "\fBTCPStream\fP* FTPSocket::cs\fC [protected]\fP"
.PP
.SS "int FTPSocket::debug\fC [static, protected]\fP"
.PP


.SH "AUTHOR"
.PP 
Generated automatically by Doxygen for CommonC++ from the source code.