pidgin: 1890ad12: ChangeLog.API new calls for STUN and TUR...

malu at pidgin.im malu at pidgin.im
Fri Apr 3 16:50:33 EDT 2009


-----------------------------------------------------------------
Revision: 1890ad1259c93f5ad18ceb3365717ebc43b30198
Ancestor: 030ca835c7587163eaabbe46fcca8596be10594b
Author: malu at pidgin.im
Date: 2009-04-03T20:46:31
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/1890ad1259c93f5ad18ceb3365717ebc43b30198

Modified files:
        ChangeLog.API libpurple/network.h

ChangeLog: 

ChangeLog.API new calls for STUN and TURN servers used by vv
Added @since on new calls in network.h

-------------- next part --------------
============================================================
--- ChangeLog.API	806472095fe35bc8ed02f82e5d38de90ee3ae577
+++ ChangeLog.API	c4516b9a52728841169223a990807bebf1942b0c
@@ -22,6 +22,10 @@ version 2.6.0 (??/??/2009):
 		* 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
============================================================
--- libpurple/network.h	3ab9f32129412a0ead94a138870c06e52997df64
+++ libpurple/network.h	5f7237ba0a0f2a69ebed06c61aa132945b796237
@@ -230,6 +230,7 @@ void *purple_network_get_handle(void);
  * 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 @@ void purple_network_set_stun_server(cons
  * 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 @@ const gchar *purple_network_get_stun_ip(
  * 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 @@ void purple_network_set_turn_server(cons
  * 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);
 		


More information about the Commits mailing list