[Freeswitch-svn] [commit] r13800 - in freeswitch/trunk/src: . include

FreeSWITCH SVN andrew at freeswitch.org
Tue Jun 16 20:44:47 PDT 2009


Author: andrew
Date: Tue Jun 16 22:44:47 2009
New Revision: 13800

Log:
int32_t -> uint8_t


Modified:
   freeswitch/trunk/src/include/switch_apr.h
   freeswitch/trunk/src/switch_apr.c

Modified: freeswitch/trunk/src/include/switch_apr.h
==============================================================================
--- freeswitch/trunk/src/include/switch_apr.h	(original)
+++ freeswitch/trunk/src/include/switch_apr.h	Tue Jun 16 22:44:47 2009
@@ -1205,7 +1205,7 @@
  * @remark If the TTL is 0, packets will only be seen by sockets on the local machine,
  *     and only when multicast loopback is enabled.
  */
-SWITCH_DECLARE(switch_status_t) switch_mcast_hops(switch_socket_t *sock, int32_t ttl);
+SWITCH_DECLARE(switch_status_t) switch_mcast_hops(switch_socket_t *sock, uint8_t ttl);
 
 
 /** @} */

Modified: freeswitch/trunk/src/switch_apr.c
==============================================================================
--- freeswitch/trunk/src/switch_apr.c	(original)
+++ freeswitch/trunk/src/switch_apr.c	Tue Jun 16 22:44:47 2009
@@ -737,7 +737,7 @@
 	return apr_mcast_join(sock, join, iface, source);
 }
 
-SWITCH_DECLARE(switch_status_t) switch_mcast_hops(switch_socket_t *sock, int32_t ttl)
+SWITCH_DECLARE(switch_status_t) switch_mcast_hops(switch_socket_t *sock, uint8_t ttl)
 {
 	return apr_mcast_hops(sock, ttl);
 }



More information about the Freeswitch-svn mailing list