aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-ft-handler.c
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimo.cecchi@collabora.co.uk>2009-05-13 21:02:16 +0800
committerCosimo Cecchi <cosimoc@gnome.org>2009-06-01 23:49:56 +0800
commit872178334e6171c60b5bcf1cede7ae5a36645da1 (patch)
tree08eb889157773a04419ae5e688da35aa38eba0e6 /libempathy/empathy-ft-handler.c
parent46881a51c2c317d482de1889ad29f3e58a0cfe10 (diff)
downloadgsoc2013-empathy-872178334e6171c60b5bcf1cede7ae5a36645da1.tar
gsoc2013-empathy-872178334e6171c60b5bcf1cede7ae5a36645da1.tar.gz
gsoc2013-empathy-872178334e6171c60b5bcf1cede7ae5a36645da1.tar.bz2
gsoc2013-empathy-872178334e6171c60b5bcf1cede7ae5a36645da1.tar.lz
gsoc2013-empathy-872178334e6171c60b5bcf1cede7ae5a36645da1.tar.xz
gsoc2013-empathy-872178334e6171c60b5bcf1cede7ae5a36645da1.tar.zst
gsoc2013-empathy-872178334e6171c60b5bcf1cede7ae5a36645da1.zip
Add use_hash params for incoming transfers
Add use_hash params for incoming transfers to the FT Factory and Handler, so that we will use them to check hash for received files.
Diffstat (limited to 'libempathy/empathy-ft-handler.c')
-rw-r--r--libempathy/empathy-ft-handler.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/libempathy/empathy-ft-handler.c b/libempathy/empathy-ft-handler.c
index 5e6d02922..f2fafd73b 100644
--- a/libempathy/empathy-ft-handler.c
+++ b/libempathy/empathy-ft-handler.c
@@ -250,7 +250,7 @@ empathy_ft_handler_class_init (EmpathyFTHandlerClass *klass)
param_spec = g_param_spec_object ("gfile",
"gfile", "The GFile we're handling",
G_TYPE_FILE,
- G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_CONSTRUCT_ONLY);
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
g_object_class_install_property (object_class, PROP_G_FILE, param_spec);
param_spec = g_param_spec_object ("tp-file",
@@ -261,7 +261,7 @@ empathy_ft_handler_class_init (EmpathyFTHandlerClass *klass)
param_spec = g_param_spec_boolean ("use-hash",
"use-hash", "Whether we should use checksum when sending or receiving",
- FALSE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_CONSTRUCT_ONLY);
+ FALSE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
g_object_class_install_property (object_class, PROP_USE_HASH, param_spec);
/* signals */
@@ -996,12 +996,14 @@ empathy_ft_handler_cancel_transfer (EmpathyFTHandler *handler)
void
empathy_ft_handler_incoming_set_destination (EmpathyFTHandler *handler,
- GFile *destination)
+ GFile *destination,
+ gboolean use_hash)
{
g_return_if_fail (EMPATHY_IS_FT_HANDLER (handler));
g_return_if_fail (G_IS_FILE (destination));
- g_object_set (handler, "gfile", destination, NULL);
+ g_object_set (handler, "gfile", destination,
+ "use-hash", use_hash, NULL);
}
const char *