blob: 0ade9ea37a334ea106fe1ec2fd75c296cf8d9a9d [file] [log] [blame]
Dennis Syrovatskye296b472005-11-17 04:23:28 +00001/* Copyright (C) 2005 TightVNC Team. All Rights Reserved.
2 *
3 * This is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This software is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
16 * USA.
17 *
18 * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
19 *
20 */
21
22// -=- SFTMsgWriter.cxx
23
24#include <winvnc/SFTMsgWriter.h>
25
26using namespace winvnc;
27
28SFTMsgWriter::SFTMsgWriter()
29{
30}
31
32SFTMsgWriter::~SFTMsgWriter()
33{
34}
Dennis Syrovatsky6c3013f2005-11-17 04:38:54 +000035
36bool
Dennis Syrovatsky5d25b192005-11-17 05:10:23 +000037SFTMsgWriter::writeBytes(unsigned int dataSize, void *pData)
38{
39 return false;
40}
41
42bool
Dennis Syrovatsky6c3013f2005-11-17 04:38:54 +000043SFTMsgWriter::writeFileListData(unsigned char flags, rfb::FileInfo *pFileInfo)
44{
45 return false;
46}
47
48bool
49SFTMsgWriter::writeFileDownloadData(unsigned short dataSize, void *pData)
50{
51 return false;
52}
53
54bool
55SFTMsgWriter::writeFileDownloadData(unsigned int modTime)
56{
57 return false;
58}
59
60bool
61SFTMsgWriter::writeFileUploadCancel(unsigned short reasonLen, char *pReason)
62{
63 return false;
64}
65
66bool
67SFTMsgWriter::writeFileDownloadFailed(unsigned short reasonLen, char *pReason)
68{
69 return false;
70}
71
72bool
73SFTMsgWriter::writeFileDirSizeData(DWORD64 dw64DirSize)
74{
75 return false;
76}
77
78bool
79SFTMsgWriter::writeFileLastRqstFailed(unsigned char lastRequest,
80 unsigned short reasonLen,
81 char *pReason)
82{
83 return false;
84}