mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-12 12:18:18 +00:00
int32_t -> uint8_t
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13800 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
d195845e5c
commit
8b6143fb38
@ -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);
|
||||
|
||||
|
||||
/** @} */
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user