1/*
2 * Copyright 1998-1999 Be, Inc. All Rights Reserved.
3 * Copyright 2003-2019 Haiku, Inc. All rights reserved.
4 * Distributed under the terms of the MIT License.
5 */
6
7
8#include "FileUploadClient.h"
9
10
11FileUploadClient::FileUploadClient()
12{
13}
14
15
16FileUploadClient::~FileUploadClient()
17{
18}
19
20
21bool
22FileUploadClient::ChangeDir(const string& dir)
23{
24	return false;
25}
26
27
28bool
29FileUploadClient::ListDirContents(string& listing)
30{
31	return false;
32}
33
34
35bool
36FileUploadClient::PrintWorkingDir(string& dir)
37{
38	return false;
39}
40
41
42bool
43FileUploadClient::Connect(const string& server, const string& login,
44	const string& passwd)
45{
46	return false;
47}
48
49
50bool
51FileUploadClient::PutFile(const string& local, const string& remote,
52	ftp_mode mode)
53{
54	return false;
55}
56
57
58bool
59FileUploadClient::GetFile(const string& remote, const string& local,
60	ftp_mode mode)
61{
62	return false;
63}
64
65
66// Note: this only works for local remote moves, cross filesystem moves
67// will not work
68bool
69FileUploadClient::MoveFile(const string& oldPath, const string& newPath)
70{
71	return false;
72}
73
74
75bool
76FileUploadClient::Chmod(const string& path, const string& mod)
77{
78	return false;
79}
80
81
82void
83FileUploadClient::SetPassive(bool on)
84{
85}
86