~ubuntu-branches/debian/sid/filezilla/sid

« back to all changes in this revision

Viewing changes to src/putty/fzsftp.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Cécile (Le_Vert)
  • Date: 2008-07-05 21:00:24 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080705210024-mvzp21zlyheschi6
Tags: 3.0.11.1-1
* wxWidgets 2.8 just entered unstable ! Upload to unstable.
* New upstream release.
* Bump Standards-Version to 3.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
typedef enum
2
 
{
3
 
    sftpUnknown = -1,
4
 
    sftpReply = 0,
5
 
    sftpDone,
6
 
    sftpError,
7
 
    sftpVerbose,
8
 
    sftpStatus,
9
 
    sftpRecv,
10
 
    sftpSend,
11
 
    sftpClose,
12
 
    sftpRequest,
13
 
    sftpListentry,
14
 
    sftpRead,
15
 
    sftpWrite,
16
 
    sftpRequestPreamble,
17
 
    sftpRequestInstruction
18
 
} sftpEventTypes;
19
 
 
20
 
enum sftpRequestTypes
21
 
{
22
 
    sftpReqPassword,
23
 
    sftpReqHostkey,
24
 
    sftpReqHostkeyChanged,
25
 
    sftpReqUnknown
26
 
};
27
 
 
28
 
int fznotify(sftpEventTypes type);
29
 
int fzprintf(sftpEventTypes type, const char* p, ...);
30
 
int fzprintf_raw(sftpEventTypes type, const char* p, ...);
31
 
int fzprintf_raw_untrusted(sftpEventTypes type, const char* p, ...);
32
 
int fznotify1(sftpEventTypes type, int data);
 
1
int ProcessQuotaCmd(const char* line);
 
2
int RequestQuota(int i, int bytes);
 
3
void UpdateQuota(int i, int bytes);
 
4
char* get_input_pushback(void);
 
5
int has_input_pushback(void);
 
6
#ifndef _WINDOWS
 
7
char* read_input_line(int force, int* error);
 
8
#endif