# HG changeset patch # User Mike Ruprecht # Date 1231549889 0 # Node ID 5c3976757e503adba01dc418bd13e7d7f30bd529 # Parent 8e0ff15f835a3fe0f419bf6dc5948687e2153fe5# Parent c7ab1983df884001919fabd7a10da1d32df40bce merge of '1fa05b8b4d069723f0cba486203a2a00c3baf096' and '9fc1a9e643b3113695eaf212da6cb69b061ef832' diff -r 8e0ff15f835a -r 5c3976757e50 libpurple/protocols/jabber/Makefile.mingw --- a/libpurple/protocols/jabber/Makefile.mingw Sat Jan 10 01:09:25 2009 +0000 +++ b/libpurple/protocols/jabber/Makefile.mingw Sat Jan 10 01:11:29 2009 +0000 @@ -85,6 +85,7 @@ ## LIBS = \ -lglib-2.0 \ + -lgobject-2.0 \ -lxml2 \ -lws2_32 \ -lintl \ diff -r 8e0ff15f835a -r 5c3976757e50 libpurple/protocols/jabber/google.c --- a/libpurple/protocols/jabber/google.c Sat Jan 10 01:09:25 2009 +0000 +++ b/libpurple/protocols/jabber/google.c Sat Jan 10 01:11:29 2009 +0000 @@ -31,7 +31,6 @@ #include "iq.h" #ifdef USE_VV -#include typedef struct { char *id; @@ -124,7 +123,6 @@ fs_codec_list_destroy(codecs); jabber_iq_send(iq); - gst_element_set_state(purple_media_get_pipeline(session->media), GST_STATE_PLAYING); } static void diff -r 8e0ff15f835a -r 5c3976757e50 libpurple/protocols/jabber/jingle/content.c --- a/libpurple/protocols/jabber/jingle/content.c Sat Jan 10 01:09:25 2009 +0000 +++ b/libpurple/protocols/jabber/jingle/content.c Sat Jan 10 01:11:29 2009 +0000 @@ -18,7 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA */ -#include "config.h" +#include "internal.h" + #include "debug.h" #include "content.h" #include "jingle.h" diff -r 8e0ff15f835a -r 5c3976757e50 libpurple/protocols/jabber/jingle/iceudp.c --- a/libpurple/protocols/jabber/jingle/iceudp.c Sat Jan 10 01:09:25 2009 +0000 +++ b/libpurple/protocols/jabber/jingle/iceudp.c Sat Jan 10 01:11:29 2009 +0000 @@ -18,6 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA */ +#include "internal.h" + #include "iceudp.h" #include "jingle.h" #include "debug.h" diff -r 8e0ff15f835a -r 5c3976757e50 libpurple/protocols/jabber/jingle/jingle.c --- a/libpurple/protocols/jabber/jingle/jingle.c Sat Jan 10 01:09:25 2009 +0000 +++ b/libpurple/protocols/jabber/jingle/jingle.c Sat Jan 10 01:11:29 2009 +0000 @@ -19,7 +19,8 @@ * */ -#include "config.h" +#include "internal.h" + #include "content.h" #include "debug.h" #include "jingle.h" @@ -423,15 +424,17 @@ } } +static void +jingle_terminate_sessions_gh(gpointer key, gpointer value, gpointer user_data) +{ + g_object_unref(value); +} + void jingle_terminate_sessions(JabberStream *js) { - GList *values = js->sessions ? - g_hash_table_get_values(js->sessions) : NULL; - - for (; values; values = g_list_delete_link(values, values)) { - JingleSession *session = (JingleSession *)values->data; - g_object_unref(session); - } + if (js->sessions) + g_hash_table_foreach(js->sessions, + jingle_terminate_sessions_gh, NULL); } diff -r 8e0ff15f835a -r 5c3976757e50 libpurple/protocols/jabber/jingle/rawudp.c --- a/libpurple/protocols/jabber/jingle/rawudp.c Sat Jan 10 01:09:25 2009 +0000 +++ b/libpurple/protocols/jabber/jingle/rawudp.c Sat Jan 10 01:11:29 2009 +0000 @@ -18,6 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA */ +#include "internal.h" + #include "rawudp.h" #include "jingle.h" #include "debug.h" diff -r 8e0ff15f835a -r 5c3976757e50 libpurple/protocols/jabber/jingle/session.c --- a/libpurple/protocols/jabber/jingle/session.c Sat Jan 10 01:09:25 2009 +0000 +++ b/libpurple/protocols/jabber/jingle/session.c Sat Jan 10 01:11:29 2009 +0000 @@ -18,7 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA */ -#include "config.h" +#include "internal.h" + #include "content.h" #include "debug.h" #include "session.h" @@ -362,28 +363,31 @@ g_hash_table_lookup(js->sessions, sid) : NULL; } +static gboolean find_by_jid_ghr(gpointer key, + gpointer value, gpointer user_data) +{ + JingleSession *session = (JingleSession *)value; + const gchar *jid = user_data; + gboolean use_bare = strchr(jid, '/') == NULL; + gchar *remote_jid = jingle_session_get_remote_jid(session); + gchar *cmp_jid = use_bare ? jabber_get_bare_jid(remote_jid) + : g_strdup(remote_jid); + g_free(remote_jid); + if (!strcmp(jid, cmp_jid)) { + g_free(cmp_jid); + return TRUE; + } + g_free(cmp_jid); + + return FALSE; +} + JingleSession * jingle_session_find_by_jid(JabberStream *js, const gchar *jid) { - GList *values = (js->sessions) ? - g_hash_table_get_values(js->sessions) : NULL; - gboolean use_bare = strchr(jid, '/') == NULL; - - for (; values; values = g_list_delete_link(values, values)) { - JingleSession *session = (JingleSession *)values->data; - gchar *remote_jid = jingle_session_get_remote_jid(session); - gchar *cmp_jid = use_bare ? jabber_get_bare_jid(remote_jid) - : g_strdup(remote_jid); - g_free(remote_jid); - if (!strcmp(jid, cmp_jid)) { - g_free(cmp_jid); - g_list_free(values); - return session; - } - g_free(cmp_jid); - } - - return NULL; + return js->sessions != NULL ? + g_hash_table_find(js->sessions, + find_by_jid_ghr, (gpointer)jid) : NULL; } static xmlnode * diff -r 8e0ff15f835a -r 5c3976757e50 libpurple/protocols/jabber/jingle/transport.c --- a/libpurple/protocols/jabber/jingle/transport.c Sat Jan 10 01:09:25 2009 +0000 +++ b/libpurple/protocols/jabber/jingle/transport.c Sat Jan 10 01:11:29 2009 +0000 @@ -18,6 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA */ +#include "internal.h" + #include "transport.h" #include "jingle.h" #include "debug.h"