changeset 26429:f171707b7d54

ChangeLog.API new calls for STUN and TURN servers used by vv Added @since on new calls in network.h
author Marcus Lundblad <ml@update.uu.se>
date Fri, 03 Apr 2009 20:46:31 +0000
parents 57324f0a0a83
children 12089d993a0c cec679e45332 c08719989149 ae24e54a5014
files ChangeLog.API libpurple/network.h
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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);