diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-20 05:04:18 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-20 05:04:18 +0800 |
commit | c12336006558fc5c6975c50529b3174d90d12308 (patch) | |
tree | 6ccbad0fb3fe48f9562385e26a4b6866e5b0d14f /libempathy/empathy-tp-tube.h | |
parent | 80c96c4a4b5ba3b356165c5fd89922af91e7b82a (diff) | |
download | gsoc2013-empathy-c12336006558fc5c6975c50529b3174d90d12308.tar gsoc2013-empathy-c12336006558fc5c6975c50529b3174d90d12308.tar.gz gsoc2013-empathy-c12336006558fc5c6975c50529b3174d90d12308.tar.bz2 gsoc2013-empathy-c12336006558fc5c6975c50529b3174d90d12308.tar.lz gsoc2013-empathy-c12336006558fc5c6975c50529b3174d90d12308.tar.xz gsoc2013-empathy-c12336006558fc5c6975c50529b3174d90d12308.tar.zst gsoc2013-empathy-c12336006558fc5c6975c50529b3174d90d12308.zip |
Rename empathy_offer_ipv4_stream_tube() to empathy_tp_tube_new_ipv4_stream_tube() and return the new EmpathyTpTube object.
svn path=/trunk/; revision=981
Diffstat (limited to 'libempathy/empathy-tp-tube.h')
-rw-r--r-- | libempathy/empathy-tp-tube.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libempathy/empathy-tp-tube.h b/libempathy/empathy-tp-tube.h index b4c009ba1..72314d437 100644 --- a/libempathy/empathy-tp-tube.h +++ b/libempathy/empathy-tp-tube.h @@ -55,15 +55,14 @@ struct _EmpathyTpTubeClass { GType empathy_tp_tube_get_type (void) G_GNUC_CONST; EmpathyTpTube *empathy_tp_tube_new (TpChannel *channel, guint tube_id); +EmpathyTpTube *empathy_tp_tube_new_ipv4_stream_tube (EmpathyContact *contact, + const gchar *hostname, guint port, const gchar *service); void empathy_tp_tube_accept_ipv4_stream_tube (EmpathyTpTube *tube); void empathy_tp_tube_accept_unix_stream_tube (EmpathyTpTube *tube); void empathy_tp_tube_get_ipv4_socket (EmpathyTpTube *tube, gchar **hostname, guint *port); gchar * empathy_tp_tube_get_unix_socket (EmpathyTpTube *tube); -void empathy_offer_ipv4_stream_tube (EmpathyContact *contact, - const gchar *hostname, guint port, const gchar *service); - G_END_DECLS #endif /* __EMPATHY_TP_TUBE_H__ */ |