add x_ssi which acts the same as x_pls

This commit is contained in:
Ralph Metzler 2018-03-05 16:57:37 +01:00
parent 05908c38aa
commit d6013245e4
1 changed files with 2 additions and 1 deletions

View File

@ -1118,7 +1118,8 @@ static int parse_url(struct oscon *con, int streamonly)
break;
p->set |= (1UL << PARAM_ISI);
dbgprintf(DEBUG_SYS, "x_isi=%d, ", p->param[PARAM_ISI]);
} else if (!strncasecmp(url, "x_pls=", 6)) {
} else if (!strncasecmp(url, "x_pls=", 6) ||
!strncasecmp(url, "x_ssi=", 6)) {
url += 6;
p->param[PARAM_PLS] = strtoul(url, &end, 0);
if (end == url)