mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-13 12:40:17 +00:00
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…
x
Reference in New Issue
Block a user