don't perform send packet to ourselves test on windows (it seems to fail a lot, and there is no reason to do that test on windows anyways) (FSCORE-73)

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6840 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2007-12-17 18:24:26 +00:00
parent 44c1cb72ff
commit 523c0bd845

View File

@ -354,9 +354,11 @@ 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;
#ifndef WIN32
char o[5] = "TEST", i[5] = ""; char o[5] = "TEST", i[5] = "";
switch_size_t len, ilen = 0; switch_size_t len, ilen = 0;
int x; int x;
#endif
*err = NULL; *err = NULL;
@ -384,6 +386,7 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_set_local_address(switch_rtp_t *rtp_s
goto done; goto done;
} }
#ifndef WIN32
len = sizeof(i); len = sizeof(i);
switch_socket_opt_set(new_sock, SWITCH_SO_NONBLOCK, TRUE); switch_socket_opt_set(new_sock, SWITCH_SO_NONBLOCK, TRUE);
@ -410,7 +413,8 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_set_local_address(switch_rtp_t *rtp_s
*err = "Send myself a packet failed!"; *err = "Send myself a packet failed!";
goto done; goto done;
} }
#endif
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;