mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-30 10:15:52 +00:00
silly socket test
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4981 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
1647d3e568
commit
e9753a2d34
@ -323,6 +323,8 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_set_local_address(switch_rtp_t *rtp_s
|
|||||||
switch_socket_t *new_sock = NULL, *old_sock = NULL;
|
switch_socket_t *new_sock = NULL, *old_sock = NULL;
|
||||||
switch_status_t status = SWITCH_STATUS_FALSE;
|
switch_status_t status = SWITCH_STATUS_FALSE;
|
||||||
*err = NULL;
|
*err = NULL;
|
||||||
|
char o[5] = "TEST", i[5] = "";
|
||||||
|
switch_size_t len;
|
||||||
|
|
||||||
if (switch_sockaddr_info_get(&rtp_session->local_addr, host, SWITCH_UNSPEC, port, 0, rtp_session->pool) != SWITCH_STATUS_SUCCESS) {
|
if (switch_sockaddr_info_get(&rtp_session->local_addr, host, SWITCH_UNSPEC, port, 0, rtp_session->pool) != SWITCH_STATUS_SUCCESS) {
|
||||||
*err = "Local Address Error!";
|
*err = "Local Address Error!";
|
||||||
@ -348,6 +350,14 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_set_local_address(switch_rtp_t *rtp_s
|
|||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
len = sizeof(i);
|
||||||
|
switch_socket_sendto(new_sock, rtp_session->local_addr, 0, (void *) o, &len);
|
||||||
|
switch_socket_recvfrom(rtp_session->from_addr, new_sock, 0, (void *) i, &len);
|
||||||
|
|
||||||
|
if (!len) {
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
|
||||||
old_sock = rtp_session->sock;
|
old_sock = rtp_session->sock;
|
||||||
rtp_session->sock = new_sock;
|
rtp_session->sock = new_sock;
|
||||||
new_sock = NULL;
|
new_sock = NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user