]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
int32_t -> uint8_t
authorAndrew Thompson <andrew@hijacked.us>
Wed, 17 Jun 2009 03:44:47 +0000 (03:44 +0000)
committerAndrew Thompson <andrew@hijacked.us>
Wed, 17 Jun 2009 03:44:47 +0000 (03:44 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13800 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/include/switch_apr.h
src/switch_apr.c

index 9a94480ce37b2e24a29921ee68ea77a3bc16206f..0bde6750aabb913dc4aa1afcdd7fd536805e3ea6 100644 (file)
@@ -1205,7 +1205,7 @@ SWITCH_DECLARE(switch_status_t) switch_mcast_join(switch_socket_t *sock, switch_
  * @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);
 
 
 /** @} */
index b729872aa8066b1ac8d86d05c03a0313db62d8c8..f622a1cb4815f1e6ef1dc938303d6526464a6117 100644 (file)
@@ -737,7 +737,7 @@ SWITCH_DECLARE(switch_status_t) switch_mcast_join(switch_socket_t *sock, switch_
        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);
 }