summaryrefslogtreecommitdiff
path: root/src/jingle-transport-iceudp.c
diff options
context:
space:
mode:
authorSenko Rasic <senko.rasic@collabora.co.uk>2009-02-05 15:38:35 +0100
committerWill Thompson <will.thompson@collabora.co.uk>2009-06-27 13:13:21 +0100
commitc089a831d2c64e3913966e91e1e5b833a996f32c (patch)
tree41da4120dabb66b4dfdbb81e88baa7c11ea3d9f2 /src/jingle-transport-iceudp.c
parent99194da330d05d5353d8683c7f1a295848ce1f25 (diff)
JingleTransportIface: rename add_candidates() to more descriptive new_local_candidates()
Diffstat (limited to 'src/jingle-transport-iceudp.c')
-rw-r--r--src/jingle-transport-iceudp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jingle-transport-iceudp.c b/src/jingle-transport-iceudp.c
index 6ecabd90d..20518c3f5 100644
--- a/src/jingle-transport-iceudp.c
+++ b/src/jingle-transport-iceudp.c
@@ -465,7 +465,7 @@ transmit_candidates (GabbleJingleTransportIceUdp *transport, GList *candidates)
/* Takes in a list of slice-allocated JingleCandidate structs */
static void
-add_candidates (GabbleJingleTransportIface *obj, GList *new_candidates)
+new_local_candidates (GabbleJingleTransportIface *obj, GList *new_candidates)
{
GabbleJingleTransportIceUdp *transport =
GABBLE_JINGLE_TRANSPORT_ICEUDP (obj);
@@ -544,7 +544,7 @@ transport_iface_init (gpointer g_iface, gpointer iface_data)
GabbleJingleTransportIfaceClass *klass = (GabbleJingleTransportIfaceClass *) g_iface;
klass->parse_candidates = parse_candidates;
- klass->add_candidates = add_candidates;
+ klass->new_local_candidates = new_local_candidates;
klass->retransmit_candidates = retransmit_candidates;
klass->get_remote_candidates = get_remote_candidates;
klass->get_transport_type = get_transport_type;