fix for MODENDP-21. We should add better handling of all the possible values for this.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5569 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
62cafc8e33
commit
36509dfeb4
|
@ -1088,7 +1088,7 @@ uint8_t sofia_glue_negotiate_sdp(switch_core_session_t *session, sdp_session_t *
|
|||
continue;
|
||||
}
|
||||
|
||||
if (!strcasecmp(a->a_name, "sendonly")) {
|
||||
if ((!strcasecmp(a->a_name, "sendonly")) || (!strcasecmp(a->a_name, "inactive"))) {
|
||||
sendonly = 1;
|
||||
} else if (!strcasecmp(a->a_name, "sendrecv")) {
|
||||
sendonly = 0;
|
||||
|
|
Loading…
Reference in New Issue