# HG changeset patch # User Marcus Lundblad # Date 1238791591 0 # Node ID f171707b7d54052006e2fdad29ff0c7c95f95139 # Parent 57324f0a0a83717f503d65d8e8440f4b9637f883 ChangeLog.API new calls for STUN and TURN servers used by vv Added @since on new calls in network.h diff -r 57324f0a0a83 -r f171707b7d54 ChangeLog.API --- a/ChangeLog.API Fri Apr 03 19:29:53 2009 +0000 +++ b/ChangeLog.API Fri Apr 03 20:46:31 2009 +0000 @@ -22,6 +22,10 @@ * purple_global_proxy_set_info * purple_log_get_activity_score * purple_network_force_online + * purple_network_set_stun_server + * purple_network_set_turn_server + * purple_network_get_stun_ip + * purple_network_get_turn_ip * purple_prpl_get_media_caps * purple_prpl_initiate_media * purple_request_field_get_group diff -r 57324f0a0a83 -r f171707b7d54 libpurple/network.h --- a/libpurple/network.h Fri Apr 03 19:29:53 2009 +0000 +++ b/libpurple/network.h Fri Apr 03 20:46:31 2009 +0000 @@ -230,6 +230,7 @@ * Will result in a DNS query being executed asynchronous * * @param stun_server The host name of the STUN server to set + * @since 2.6.0 */ void purple_network_set_stun_server(const gchar *stun_server); @@ -237,6 +238,7 @@ * Get the IP address of the STUN server as a string representation * * @return the IP address + * @since 2.6.0 */ const gchar *purple_network_get_stun_ip(void); @@ -245,6 +247,7 @@ * Will result in a DNS query being executed asynchronous * * @param stun_server The host name of the STUN server to set + * @since 2.6.0 */ void purple_network_set_turn_server(const gchar *stun_server); @@ -252,6 +255,7 @@ * Get the IP address of the STUN server as a string representation * * @return the IP address + * @since 2.6.0 */ const gchar *purple_network_get_turn_ip(void);