comparison libpurple/stun.c @ 32676:32b2a17d2f92

Rename purple_network_listen_range_family() to purple_network_listen_range().
author andrew.victor@mxit.com
date Sat, 24 Sep 2011 20:48:59 +0000
parents efe38e6319f2
children d2ef8926b960
comparison
equal deleted inserted replaced
32675:75d20c9836c1 32676:32b2a17d2f92
336 nattype.lookup_time = time(NULL); 336 nattype.lookup_time = time(NULL);
337 do_callbacks(); 337 do_callbacks();
338 return; 338 return;
339 } 339 }
340 340
341 if (!purple_network_listen_range(12108, 12208, SOCK_DGRAM, hbn_listen_cb, hosts)) { 341 if (!purple_network_listen_range(12108, 12208, AF_UNSPEC, SOCK_DGRAM, hbn_listen_cb, hosts)) {
342 while (hosts) { 342 while (hosts) {
343 hosts = g_slist_delete_link(hosts, hosts); 343 hosts = g_slist_delete_link(hosts, hosts);
344 g_free(hosts->data); 344 g_free(hosts->data);
345 hosts = g_slist_delete_link(hosts, hosts); 345 hosts = g_slist_delete_link(hosts, hosts);
346 } 346 }