don't choose 0 port for proxy mode
This commit is contained in:
parent
0ca2c2b0e7
commit
818f8521e0
|
@ -1541,7 +1541,11 @@ switch_status_t sofia_glue_tech_proxy_remote_addr(private_object_t *tech_pvt, co
|
|||
}
|
||||
|
||||
if ((p = (char *) switch_stristr("m=image ", sdp_str))) {
|
||||
port_ptr = p + 8;
|
||||
char *tmp = p + 8;
|
||||
|
||||
if (tmp && atoi(tmp)) {
|
||||
port_ptr = tmp;
|
||||
}
|
||||
}
|
||||
|
||||
if ((p = (char *) switch_stristr("m=video ", sdp_str))) {
|
||||
|
|
Loading…
Reference in New Issue