diff options
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-tp-file.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/libempathy/empathy-tp-file.c b/libempathy/empathy-tp-file.c index e424bdfb7..9cfdb3371 100644 --- a/libempathy/empathy-tp-file.c +++ b/libempathy/empathy-tp-file.c @@ -283,18 +283,21 @@ struct _EmpathyTpFilePriv { GFile *gfile; GInputStream *in_stream; GOutputStream *out_stream; - gboolean incoming; - gchar *filename; + + /* org.freedesktop.Telepathy.Channel.Type.FileTransfer D-Bus properties */ EmpFileTransferState state; - EmpFileTransferStateChangeReason state_change_reason; + gchar *content_type; + gchar *filename; guint64 size; + EmpFileHashType content_hash_type; + gchar *content_hash; + gchar *description; guint64 transferred_bytes; + + gboolean incoming; + EmpFileTransferStateChangeReason state_change_reason; time_t start_time; gchar *unix_socket_path; - gchar *content_hash; - EmpFileHashType content_hash_type; - gchar *content_type; - gchar *description; GCancellable *cancellable; }; |