# HG changeset patch # User Mike Ruprecht # Date 1237448304 0 # Node ID 1ac93927e7f5abc56bc77378944ef3cc6ea776d4 # Parent 06693083f6680dbb052eae36783bf6a13f4bbd1f Don't forget to copy the rem_know attribute of IceUdp candidates. diff -r 06693083f668 -r 1ac93927e7f5 libpurple/protocols/jabber/jingle/iceudp.c --- a/libpurple/protocols/jabber/jingle/iceudp.c Thu Mar 19 07:34:25 2009 +0000 +++ b/libpurple/protocols/jabber/jingle/iceudp.c Thu Mar 19 07:38:24 2009 +0000 @@ -68,6 +68,8 @@ new_candidate->username = g_strdup(candidate->username); new_candidate->password = g_strdup(candidate->password); + new_candidate->rem_known = candidate->rem_known; + return new_candidate; } diff -r 06693083f668 -r 1ac93927e7f5 libpurple/protocols/jabber/jingle/rawudp.h --- a/libpurple/protocols/jabber/jingle/rawudp.h Thu Mar 19 07:34:25 2009 +0000 +++ b/libpurple/protocols/jabber/jingle/rawudp.h Thu Mar 19 07:38:24 2009 +0000 @@ -68,6 +68,9 @@ gchar *id; gchar *ip; guint port; + + gboolean rem_known; /* TRUE if the remote side knows + * about this candidate */ }; #ifdef __cplusplus