1/*
2 * Copyright (c) 2005 Novell, Inc.
3 * All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, contact Novell, Inc.
16 *
17 * To contact Novell about this file by physical or electronic mail,
18 * you may find current contact information at www.novell.com
19 *
20 * Author		: Rohit Kumar
21 * Email ID	: rokumar@novell.com
22 * Date		: 14th July 2005
23 */
24
25
26#ifndef FILE_TRANSFER_MSG_H
27#define FILE_TRANSFER_MSG_H
28
29typedef struct _FileTransferMsg {
30	char* data;
31	unsigned int length;
32} FileTransferMsg;
33
34FileTransferMsg GetFileListResponseMsg(char* path, char flag);
35
36FileTransferMsg GetFileDownloadResponseMsg(char* path);
37FileTransferMsg GetFileDownloadLengthErrResponseMsg();
38FileTransferMsg  GetFileDownLoadErrMsg();
39FileTransferMsg GetFileDownloadResponseMsgInBlocks(rfbClientPtr cl, rfbTightClientPtr data);
40FileTransferMsg ChkFileDownloadErr(rfbClientPtr cl, rfbTightClientPtr data);
41
42FileTransferMsg GetFileUploadLengthErrResponseMsg();
43FileTransferMsg GetFileUploadCompressedLevelErrMsg();
44FileTransferMsg ChkFileUploadErr(rfbClientPtr cl, rfbTightClientPtr data);
45FileTransferMsg ChkFileUploadWriteErr(rfbClientPtr cl, rfbTightClientPtr data, char* pBuf);
46
47void CreateDirectory(char* dirName);
48void FileUpdateComplete(rfbClientPtr cl, rfbTightClientPtr data);
49void CloseUndoneFileTransfer(rfbClientPtr cl, rfbTightClientPtr data);
50
51void FreeFileTransferMsg(FileTransferMsg ftm);
52
53#endif
54
55