aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--channels/chan_sip.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 6eb47c0c6..bc980b68b 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -3554,12 +3554,12 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req)
sdpLineNum_iterator_init(&iterator);
while ((a = get_sdp_iterate(&iterator, req, "a"))[0] != '\0') {
char* mimeSubtype = ast_strdupa(a); /* ensures we have enough space */
- if (!strcasecmp(a, "sendonly")) {
- sendonly=1;
+ if (!strcasecmp(a, "sendonly") || !strcasecmp(a, "inactive")) {
+ sendonly = 1;
continue;
}
if (!strcasecmp(a, "sendrecv")) {
- sendonly=0;
+ sendonly = 0;
}
if (sscanf(a, "rtpmap: %u %[^/]/", &codec, mimeSubtype) != 2) continue;
if (debug)