diff options
author | Benjamin Otte <otte@gnome.org> | 2009-06-15 23:03:26 +0200 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2009-06-15 23:06:57 +0200 |
commit | 2839922c259b848d7689d245a055c628754dc116 (patch) | |
tree | e858ea1ee49faf6b353a3db11772bbfce97ce07d /daemon/gvfsftptask.h | |
parent | 7f2ac23d150aa779310a37534fc8564bbfc93b86 (diff) | |
download | gvfs-2839922c259b848d7689d245a055c628754dc116.tar.gz |
[FTP] Bug 516704 – Be able to connect to an Active FTP Site
Add initial support for the PORT command. Support for EPRT and a
non-ugly API are still missing.
Diffstat (limited to 'daemon/gvfsftptask.h')
-rw-r--r-- | daemon/gvfsftptask.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/daemon/gvfsftptask.h b/daemon/gvfsftptask.h index 83455352..ac0bd74b 100644 --- a/daemon/gvfsftptask.h +++ b/daemon/gvfsftptask.h @@ -47,6 +47,7 @@ struct _GVfsFtpTask GError * error; /* NULL or current error - will be propagated to task */ GVfsFtpConnection * conn; /* connection in use by this task or NULL if none */ + GVfsFtpMethod method; /* method currently in use (only valid after call to _setup_data_connection() */ }; typedef void (* GVfsFtpErrorFunc) (GVfsFtpTask *task, gpointer data); |