diff options
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-tp-file.c | 9 | ||||
-rw-r--r-- | libempathy/empathy-tp-file.h | 1 |
2 files changed, 9 insertions, 1 deletions
diff --git a/libempathy/empathy-tp-file.c b/libempathy/empathy-tp-file.c index ada0a4354..25f93713c 100644 --- a/libempathy/empathy-tp-file.c +++ b/libempathy/empathy-tp-file.c @@ -913,12 +913,19 @@ empathy_tp_file_cancel (EmpathyTpFile *tp_file) { g_return_if_fail (EMPATHY_IS_TP_FILE (tp_file)); - tp_cli_channel_call_close (tp_file->priv->channel, -1, NULL, NULL, NULL, NULL); + tp_cli_channel_call_close (tp_file->priv->channel, -1, + NULL, NULL, NULL, NULL); if (tp_file->priv->cancellable != NULL) g_cancellable_cancel (tp_file->priv->cancellable); } +void +empathy_tp_file_close (EmpathyTpFile *tp_file) +{ + empathy_tp_file_cancel (tp_file); +} + static void empathy_tp_file_class_init (EmpathyTpFileClass *klass) { diff --git a/libempathy/empathy-tp-file.h b/libempathy/empathy-tp-file.h index 7beb3a151..ad25eb275 100644 --- a/libempathy/empathy-tp-file.h +++ b/libempathy/empathy-tp-file.h @@ -70,6 +70,7 @@ TpChannel *empathy_tp_file_get_channel (EmpathyTpFile *tp_file); void empathy_tp_file_accept (EmpathyTpFile *tp_file, guint64 offset, GFile *gfile, GError **error); void empathy_tp_file_cancel (EmpathyTpFile *tp_file); +void empathy_tp_file_close (EmpathyTpFile *tp_file); void empathy_tp_file_offer (EmpathyTpFile *tp_file, GFile *gfile, GError **error); |